#
#                           LARD 2.0
#            "It's ok to run out of butter in Zambia"
#         "Just smear squashed caterpillars on your toast"
#                            by VIz
#			     
#   I am not responsible for any use of this program by anyone, on any machine
#   for any purpose, anywhere at anytime....
#
#         Read the README before smearing LARD on your soul.

progs : lard test
	
lard : lard.o bcrypt.o account.o
	cc -o lard lard.o bcrypt.o account.o
	
lard.o : lard.c

test: test.o bcrypt.o ncrypt.o
	cc -o test test.o bcrypt.o ncrypt.o

test.o : test.c bcrypt.h

bcrypt.o : bcrypt.c bcrypt.h S.c ltypes.h ende.c done.c KS.c
ncrypt.o : ncrypt.c
account.o : account.c account.h bcrypt.h

.c.o: ; cc -c -O -o $@ $*.c

