aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 06d59c1..f957861 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
.PHONY: all install test clean
all:
+ @cd c_src && make all
@cd src && make all
install:
@@ -10,5 +11,6 @@ test: all
@cd test && make test
clean:
+ @cd c_src && make clean
@cd src && make clean
@cd test && make clean