diff options
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makeconfig b/Makeconfig index 2a287a47a5..b61af28b0b 100644 --- a/Makeconfig +++ b/Makeconfig @@ -446,9 +446,10 @@ libio-include = -I$(..)libio # These are the variables that the implicit compilation rules use. CPPFLAGS = $(+includes) $(defines) -include $(..)libc-symbols.h \ - $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@)) + $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) \ + $(CPPFLAGS-$(@F)) override CFLAGS = $(+cflags) $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) \ - $(CFLAGS-$(<F)) + $(CFLAGS-$(<F)) $(CFLAGS-$(@F)) # This is the macro that the implicit linking rules use. |