The following commit has been merged in the master branch: commit 8be851a7aea795e13de946fe72a4221a0798b045 Author: Sven Eckelmann sven@narfation.org Date: Sat May 21 14:28:15 2011 +0200
batctl: Make called tools in clean and install configurable
Signed-off-by: Sven Eckelmann sven@narfation.org
diff --git a/Makefile b/Makefile index edd8907..c2b07e7 100755 --- a/Makefile +++ b/Makefile @@ -39,6 +39,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)
@@ -61,11 +64,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)