summaryrefslogtreecommitdiff
path: root/ecp/src/crypto/poly1305/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ecp/src/crypto/poly1305/Makefile')
-rw-r--r--ecp/src/crypto/poly1305/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/ecp/src/crypto/poly1305/Makefile b/ecp/src/crypto/poly1305/Makefile
new file mode 100644
index 0000000..7645ca4
--- /dev/null
+++ b/ecp/src/crypto/poly1305/Makefile
@@ -0,0 +1,14 @@
+include ../../Makefile.platform
+CFLAGS += $(PIC) -I../include -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_DECLS=
+
+obj = poly1305.o
+
+
+all: $(obj)
+dep: all
+
+%.o: %.c
+ $(CC) $(CFLAGS) -c $<
+
+clean:
+ rm -f *.o *.a