From 74a34dfce2f4fd622229a9caf0c3cfcc7bc68ced Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Mon, 31 Jan 2022 22:44:00 +0100 Subject: added libressl --- crypto/sha/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 crypto/sha/Makefile (limited to 'crypto/sha') 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 -- cgit v1.2.3