fixed bakefile so that in-tree headers take precedence over system-installed ones

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24119 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-10-07 21:37:54 +00:00
parent 4bc89de684
commit e1a098d1ec
135 changed files with 457 additions and 444 deletions

View File

@@ -37,9 +37,10 @@ top_srcdir = @top_srcdir@
### Variables: ###
CONVERTRC_CXXFLAGS = $(CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
CONVERTRC_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
-I$(top_srcdir)/include -I$(srcdir) $(__DLLFLAG_p) \
-I$(srcdir)/../../../samples -I$(srcdir)/../../include $(CXXFLAGS)
-I$(srcdir)/../../../samples -I$(srcdir)/../../include $(CPPFLAGS) \
$(CXXFLAGS)
CONVERTRC_OBJECTS = \
$(__convertrc_os2_lib_res) \
convertrc_convert.o \

View File

@@ -35,8 +35,8 @@ top_srcdir = @top_srcdir@
DESTDIR =
LIBDIRNAME = $(top_builddir)lib
WXRC_CXXFLAGS = $(CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
-I$(top_srcdir)/include -I$(srcdir) $(__DLLFLAG_p) $(CXXFLAGS)
WXRC_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
-I$(top_srcdir)/include -I$(srcdir) $(__DLLFLAG_p) $(CPPFLAGS) $(CXXFLAGS)
WXRC_OBJECTS = \
wxrc_wxrc.o

View File

@@ -40,9 +40,10 @@ top_srcdir = @top_srcdir@
DESTDIR =
LIBDIRNAME = $(top_builddir)lib
WXRCEDIT_CXXFLAGS = $(CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
WXRCEDIT_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
-I$(top_srcdir)/include -I$(srcdir) $(__DLLFLAG_p) \
-I$(srcdir)/../../../samples -I$(srcdir)/../../include $(CXXFLAGS)
-I$(srcdir)/../../../samples -I$(srcdir)/../../include $(CPPFLAGS) \
$(CXXFLAGS)
WXRCEDIT_OBJECTS = \
$(__wxrcedit_os2_lib_res) \
wxrcedit_edapp.o \