From a4401c99c2a54ba9a964317cbff915d40d16e470 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Wed, 2 Feb 2022 06:30:38 +0100 Subject: moved aes sha and blowfish to crypto --- ext/crypto/aes/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ext/crypto/aes/Makefile (limited to 'ext/crypto/aes/Makefile') 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 -- cgit v1.2.3