summaryrefslogtreecommitdiff
path: root/code/core/crypto/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'code/core/crypto/Makefile')
-rw-r--r--code/core/crypto/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/code/core/crypto/Makefile b/code/core/crypto/Makefile
new file mode 100644
index 0000000..cfd3bf8
--- /dev/null
+++ b/code/core/crypto/Makefile
@@ -0,0 +1,22 @@
+MAKE=make
+CFLAGS=-Iinclude -I.. -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_DECLS= -O3 $(PIC)
+obj = e_chacha20poly1305.o crypto.o
+obj_dep = compat/explicit_bzero.o compat/timingsafe_memcmp.o compat/timingsafe_bcmp.o \
+ chacha/chacha.o poly1305/poly1305.o curve25519/curve25519.o curve25519/curve25519-generic.o \
+ sha/sha256.o sha/sha512.o
+subdirs = compat curve25519 chacha poly1305 sha
+
+%.o: %.c
+ $(CC) $(CFLAGS) -c $<
+
+all: $(obj)
+ for i in $(subdirs); do \
+ (cd $$i && $(MAKE) && cd ..) || exit; \
+ done
+ $(AR) rcs libecpcr.a $(obj) $(obj_dep)
+
+clean:
+ for i in $(subdirs) test; do \
+ (cd $$i && $(MAKE) clean && cd ..) || exit; \
+ done
+ rm -f *.o *.a