* Makefile.common (ALL_CFLAGS): Change := to = to allow overriding in

dependent Makefiles.
This commit is contained in:
Corinna Vinschen 2012-07-06 10:32:11 +00:00
parent 8dcd55f74f
commit 0390476c47
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-07-06 Corinna Vinschen <corinna@vinschen.de>
* Makefile.common (ALL_CFLAGS): Change := to = to allow overriding in
dependent Makefiles.
2012-01-09 Corinna Vinschen <corinna@vinschen.de>
* Makefile.common (MINGW_LDFLAGS): Correctly use -L rather than -B here.

View File

@ -113,7 +113,7 @@ LIBC:=$(newlib_build)/libc/libc.a
LIBM:=$(newlib_build)/libm/libm.a
CRT0:=$(cygwin_build)/crt0.o
ALL_CFLAGS:=$(DEFS) $(MALLOC_DEBUG) $(CFLAGS) $(GCC_DEFAULT_OPTIONS)
ALL_CFLAGS=$(DEFS) $(MALLOC_DEBUG) $(CFLAGS) $(GCC_DEFAULT_OPTIONS)
ALL_CXXFLAGS=$(DEFS) $(MALLOC_DEBUG) $(CXXFLAGS) $(GCC_DEFAULT_OPTIONS)
ifndef PREPROCESS