aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 241525f..f46e197 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,10 @@
+.PHONY: all
all:
- @make -C src
+ @$(MAKE) -C src
+
+.PHONY: clean
clean:
- @make -C src clean
+ @$(MAKE) -C src clean
+
%:
- @make -C src $@
+ @$(MAKE) -C src $@