From 59e6239f5aaf54aaa440d303d48f414536339e38 Mon Sep 17 00:00:00 2001 From: Erik Ekman Date: Tue, 27 Nov 2007 20:00:45 +0000 Subject: [PATCH] Use $(MAKE) --- 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