build: allow additional flags to be passed via EXTRAFLAGS

this allows for flags needed for the APM build
This commit is contained in:
Andrew Tridgell 2013-05-04 11:42:56 +10:00
parent 6e8c1148d5
commit aa9275c29c
1 changed files with 3 additions and 3 deletions

View File

@ -189,7 +189,7 @@ DEP_INCLUDES = $(subst .o,.d,$(OBJS))
define COMPILE
@$(ECHO) "CC: $1"
@$(MKDIR) -p $(dir $2)
$(Q) $(CC) -MD -c $(CFLAGS) $(abspath $1) -o $2
$(Q) $(CC) -MD -c $(CFLAGS) $(EXTRAFLAGS) $(abspath $1) -o $2
endef
# Compile C++ source $1 to $2
@ -198,7 +198,7 @@ endef
define COMPILEXX
@$(ECHO) "CXX: $1"
@$(MKDIR) -p $(dir $2)
$(Q) $(CXX) -MD -c $(CXXFLAGS) $(abspath $1) -o $2
$(Q) $(CXX) -MD -c $(CXXFLAGS) $(EXTRAFLAGS) $(abspath $1) -o $2
endef
# Assemble $1 into $2
@ -206,7 +206,7 @@ endef
define ASSEMBLE
@$(ECHO) "AS: $1"
@$(MKDIR) -p $(dir $2)
$(Q) $(CC) -c $(AFLAGS) $(abspath $1) -o $2
$(Q) $(CC) -c $(AFLAGS) $(EXTRAFLAGS) $(abspath $1) -o $2
endef
# Produce partially-linked $1 from files in $2