* Makefile.common: Add -dD to options when creating preprocess files.
This commit is contained in:
parent
8f4897bceb
commit
bade737e45
@ -1,3 +1,7 @@
|
|||||||
|
2005-03-22 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
|
* Makefile.common: Add -dD to options when creating preprocess files.
|
||||||
|
|
||||||
2003-11-23 Corinna Vinschen <corinna@vinschen.de>
|
2003-11-23 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* Makefile.in: Make cygserver depending on cygwin.
|
* Makefile.in: Make cygserver depending on cygwin.
|
||||||
|
@ -76,13 +76,13 @@ endif
|
|||||||
# Attempt to properly detect missing mingw or w32api and adjust command
|
# Attempt to properly detect missing mingw or w32api and adjust command
|
||||||
# line parameters appropriately
|
# line parameters appropriately
|
||||||
|
|
||||||
nostdinc:=${shell [ -d "$(updir)/w32api" ] && echo "-nostdinc"}
|
# nostdinc:=${shell [ -d "$(updir)/w32api" ] && echo "-nostdinc"}
|
||||||
ifneq (,$(nostdinc))
|
# ifneq (,$(nostdinc))
|
||||||
nostdincxx:=-nostdinc++
|
nostdincxx:=-nostdinc++
|
||||||
ifeq (,${findstring $(w32api_source),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
|
# ifeq (,${findstring $(w32api_source),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
|
||||||
w32api_include:=-I$(w32api_source)/include
|
w32api_include:=-I$(w32api_source)/include
|
||||||
endif
|
# endif
|
||||||
endif
|
# endif
|
||||||
|
|
||||||
mingw_include:=${shell [ -d "$(mingw_source)/include" ] && echo "-I$(mingw_source)/include"}
|
mingw_include:=${shell [ -d "$(mingw_source)/include" ] && echo "-I$(mingw_source)/include"}
|
||||||
ifneq (,$(mingw_include))
|
ifneq (,$(mingw_include))
|
||||||
@ -120,7 +120,7 @@ ifndef PREPROCESS
|
|||||||
c=-c
|
c=-c
|
||||||
o=.o
|
o=.o
|
||||||
else
|
else
|
||||||
c=-E
|
c=-E -dD
|
||||||
o=.E
|
o=.E
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user