aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Ghigonis <laurent@p1sec.com>2013-07-06 02:37:21 +0200
committerLaurent Ghigonis <laurent@p1sec.com>2013-07-06 02:37:21 +0200
commitf6e4d0f7520a9aa17041985903297e1f4040a6d6 (patch)
treecde169a8a5a13f11a2aadb2c5a39e97a8459e15d
parentWIP traceroute integration, disabled by default (diff)
downloadglouglou-f6e4d0f7520a9aa17041985903297e1f4040a6d6.tar.xz
glouglou-f6e4d0f7520a9aa17041985903297e1f4040a6d6.zip
use $(MAKE) to propopagate make options, e.g. -j 5
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b0be2a8..9d54297 100644
--- a/Makefile
+++ b/Makefile
@@ -5,13 +5,13 @@ ANALYSERS = gg_map
DIRS = $(LIB) $(DAEMON) $(PROBES) $(ANALYSERS)
all:
- -for d in $(DIRS); do (cd $$d; make); done
+ -for d in $(DIRS); do (cd $$d; $(MAKE)); done
clean:
- -for d in $(DIRS); do (cd $$d; make clean); done
+ -for d in $(DIRS); do (cd $$d; $(MAKE) clean); done
install:
- -for d in $(DIRS); do (cd $$d; make install); done
+ -for d in $(DIRS); do (cd $$d; $(MAKE) install); done
pkg:
$(eval _pkgname := "glouglou_pkg_$(shell date +%Y%m%d_%H%M)")