* Makefile.common (ALL_CFLAGS): Change := to = to allow overriding in
dependent Makefiles.
This commit is contained in:
parent
8dcd55f74f
commit
0390476c47
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue