# Makefile for os_crypto # Daniel B. Cid || PT=../ NAME=os_crypto include ../Config.Make os_crypto: @cd blowfish; make @cd md5; make @cd sha1; make @cd md5_sha1; make @cd shared; make ar cru os_crypto.a blowfish/bf_op.o blowfish/bf_skey.o blowfish/bf_enc.o md5/md5_op.o md5/md5.o sha1/sha1_op.o md5_sha1/md5_sha1_op.o shared/*.o ranlib os_crypto.a clean: @cd blowfish; make clean @cd md5; make clean; @cd sha1; make clean; @cd md5_sha1; make clean; @cd shared; make clean; rm -f *.a