diff options
Diffstat (limited to 'crypto/sha')
-rw-r--r-- | crypto/sha/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto/sha/Makefile b/crypto/sha/Makefile new file mode 100644 index 0000000..ee67f3e --- /dev/null +++ b/crypto/sha/Makefile @@ -0,0 +1,15 @@ +include common.mk + +obj = sha1.o + + +%.o: %.c %.h + $(CC) $(CFLAGS) -c $< + +%.o: %.S + $(CC) $(CFLAGS) -c $< + +all: $(obj) + +clean: + rm -f *.o |