summaryrefslogtreecommitdiff
path: root/code/ecp/crypto/curve25519/Makefile
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2018-01-17 18:42:47 +0100
committerUros Majstorovic <majstor@majstor.org>2018-01-17 18:42:47 +0100
commit1425f72c38fe23a9d3fcda583a7da1e7315acfc3 (patch)
tree2731c1f5b9e0c76e0a0775f6eddf81fd90b0817d /code/ecp/crypto/curve25519/Makefile
parent97a7e6617f8ad06b7bff495603200b853766ecc8 (diff)
build system improved
Diffstat (limited to 'code/ecp/crypto/curve25519/Makefile')
-rw-r--r--code/ecp/crypto/curve25519/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/code/ecp/crypto/curve25519/Makefile b/code/ecp/crypto/curve25519/Makefile
index 5799e0e..e9c2c1b 100644
--- a/code/ecp/crypto/curve25519/Makefile
+++ b/code/ecp/crypto/curve25519/Makefile
@@ -4,14 +4,11 @@ CFLAGS=$(CFLAGS_PL) $(PIC) -I../include -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_D
obj = curve25519.o curve25519-generic.o
-all: libcurve25519.a
+all: $(obj)
dep: all
%.o: %.c
$(CC) $(CFLAGS) -c $<
-libcurve25519.a: $(obj)
- $(AR) rcs $@ $(obj)
-
clean:
rm -f *.o *.a