summaryrefslogtreecommitdiff
path: root/code/ecp/crypto/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'code/ecp/crypto/Makefile')
-rw-r--r--code/ecp/crypto/Makefile4
1 files changed, 2 insertions, 2 deletions
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