diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-02-26 16:16:03 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-02-26 16:16:03 +0100 |
commit | 682c9588dc3d281cfdca22f0d6470c9f21e4ccad (patch) | |
tree | 4ccc40700a11f26d5bdd889dddf184606745fa07 /code/ecp | |
parent | 819f823ec215d5c9f4ae6c3d05cd9048e22703b7 (diff) |
fixed build system
Diffstat (limited to 'code/ecp')
-rw-r--r-- | code/ecp/Makefile | 4 | ||||
-rw-r--r-- | code/ecp/crypto/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/code/ecp/Makefile b/code/ecp/Makefile index 972f8d7..9456a4b 100644 --- a/code/ecp/Makefile +++ b/code/ecp/Makefile @@ -13,7 +13,7 @@ subdirs = crypto platform $(htable) $(vconn) all: $(obj) $(AR) rcs libecpcore.a $(obj) for i in $(subdirs); do \ - (cd $$i && $(MAKE) && cd ..) || exit; \ + (cd $$i && $(MAKE)) || exit; \ done install: all @@ -31,6 +31,6 @@ install: all clean: for i in $(subdirs); do \ - (cd $$i && $(MAKE) clean && cd ..) || exit; \ + (cd $$i && $(MAKE) clean) || exit; \ done rm -f *.o *.a
\ No newline at end of file diff --git a/code/ecp/crypto/Makefile b/code/ecp/crypto/Makefile index ecef58d..cbbc60f 100644 --- a/code/ecp/crypto/Makefile +++ b/code/ecp/crypto/Makefile @@ -16,12 +16,12 @@ subdirs = compat curve25519 chacha poly1305 sha arc4random all: $(obj) for i in $(subdirs); do \ - (cd $$i && $(MAKE) && cd ..) || exit; \ + (cd $$i && $(MAKE)) || exit; \ done $(AR) rcs libecpcr.a $(obj) $(obj_dep) clean: for i in $(subdirs) test; do \ - (cd $$i && $(MAKE) clean && cd ..) || exit; \ + (cd $$i && $(MAKE) clean) || exit; \ done rm -f *.o *.a |