Skip to content
Snippets Groups Projects
Commit 01c1fae3 authored by Timo Teräs's avatar Timo Teräs
Browse files

build: honor CPPFLAGS

parent 26558bd1
No related branches found
No related tags found
No related merge requests found
...@@ -174,8 +174,8 @@ if_changed_rule = $(if $(strip $(any-prereq) $(arg-check) ), \ ...@@ -174,8 +174,8 @@ if_changed_rule = $(if $(strip $(any-prereq) $(arg-check) ), \
##### #####
# Handle options to gcc. # Handle options to gcc.
c_flags = -Wp,-MD,$(depfile),-MT,$@ $(CFLAGS_ALL) $(CFLAGS_EXTRA) \ c_flags = -Wp,-MD,$(depfile),-MT,$@ $(CPPFLAGS) \
$(CFLAGS_$(notdir $@)) $(CFLAGS_ALL) $(CFLAGS_EXTRA) $(CFLAGS_$(notdir $@))
ld_flags = $(LDFLAGS_ALL) $(LDFLAGS_EXTRA) $(LDFLAGS_$(notdir $@)) ld_flags = $(LDFLAGS_ALL) $(LDFLAGS_EXTRA) $(LDFLAGS_$(notdir $@))
##### #####
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment