diff options
Diffstat (limited to 'code/ecp/crypto/poly1305/Makefile')
-rw-r--r-- | code/ecp/crypto/poly1305/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/code/ecp/crypto/poly1305/Makefile b/code/ecp/crypto/poly1305/Makefile index 5751602..418e3a5 100644 --- a/code/ecp/crypto/poly1305/Makefile +++ b/code/ecp/crypto/poly1305/Makefile @@ -4,14 +4,11 @@ CFLAGS=$(CFLAGS_PL) $(PIC) -I../include -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_D obj = poly1305.o -all: libpoly1305.a +all: $(obj) dep: all %.o: %.c $(CC) $(CFLAGS) -c $< -libpoly1305.a: $(obj) - $(AR) rcs $@ $(obj) - clean: rm -f *.o *.a |