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