Repository : ssh://git@open-mesh.org/alfred
On branch : master
commit 6a3592e1acf21f8edd3541e98881751fdcb33ff9 Author: Simon Wunderlich siwu@hrz.tu-chemnitz.de Date: Sun May 5 15:40:59 2013 +0200
alfred: use $(MAKE) instead of make
otherwise we might call the wrong make or don't forward the flags
Reported-by: Sven Eckelmann sven@narfation.org Signed-off-by: Simon Wunderlich siwu@hrz.tu-chemnitz.de
6a3592e1acf21f8edd3541e98881751fdcb33ff9 Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile index 5f6dc68..268a156 100644 --- a/Makefile +++ b/Makefile @@ -82,13 +82,13 @@ install: $(BINARY_NAME) $(VIS_INSTALL) $(INSTALL) -m 0755 $(BINARY_NAME) $(DESTDIR)$(SBINDIR)
vis-install: - make -C vis install + $(MAKE) -C vis install
vis-all: - make -C vis all + $(MAKE) -C vis all
vis-clean: - make -C vis clean + $(MAKE) -C vis clean
# load dependencies DEP = $(OBJ:.o=.d)