From c22752d1f5924cb628261fb09d617d520342244e Mon Sep 17 00:00:00 2001 From: Erik Ekman Date: Tue, 27 Nov 2007 20:00:45 +0000 Subject: [PATCH] Use --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f78a8f4..7516942 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ RM=rm RM_FLAGS=-f all: - @(cd src; make all) + @(cd src; $(MAKE) all) install: all $(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(sbindir) @@ -39,7 +39,7 @@ test: all clean: @echo "Cleaning..." - @(cd src; make clean) - @(cd tests; make clean) + @(cd src; $(MAKE) clean) + @(cd tests; $(MAKE) clean) @rm -rf bin