Signed-off-by: Sven Eckelmann <[email protected]>
---
This patch depends on other patches submitted earlier:
 - batmand: Fix FTBFS on second build attempt
 - batmand: Remove obsolete creation of source packages
 - batmand: Remove subversion/svk revision information
 - batmand: Use nproc to get number of available processors

 Makefile |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index a0a7f88..6c77fe7 100755
--- a/Makefile
+++ b/Makefile
@@ -69,6 +69,9 @@ endif
 
 # standard build tools
 CC ?=          gcc
+RM ?= rm -f
+INSTALL ?= install
+MKDIR ?= mkdir -p
 COMPILE.c = $(Q_CC)$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
 LINK.o = $(Q_LD)$(CC) $(LDFLAGS) $(TARGET_ARCH)
 
@@ -91,11 +94,11 @@ $(BINARY_NAME): $(OBJ)
        $(LINK.o) $^ $(LDLIBS) -o $@
 
 clean:
-       rm -f $(BINARY_NAME) $(OBJ) $(DEP)
+       $(RM) $(BINARY_NAME) $(OBJ) $(DEP)
 
 install: $(BINARY_NAME)
-       mkdir -p $(SBINDIR)
-       install -m 0755 $(BINARY_NAME) $(SBINDIR)
+       $(MKDIR) $(SBINDIR)
+       $(INSTALL) -m 0755 $(BINARY_NAME) $(SBINDIR)
 
 # load dependencies
 DEP = $(OBJ:.o=.d)
-- 
1.7.5.1

Reply via email to