X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/64d78265d0256eb00ae59b717aa97e4c5786e003..c6e7d14fa96da41236095a18ee8c1e3ad13d3dd0:/src/make.env.in diff --git a/src/make.env.in b/src/make.env.in index e21dc7fef2..289b3bf062 100644 --- a/src/make.env.in +++ b/src/make.env.in @@ -10,9 +10,9 @@ ####################### GENERAL SETTINGS ############################ - -EXTRALIBS = @EXTRA_LIBS@ -LDLIBS = ${top_builddir}/lib/@WX_TARGET_LIBRARY@ $(EXTRALIBS) +# see comment near LDFLAGS at the end of file +EXTRALIBS = @LDFLAGS@ @EXTRA_LIBS@ +LDLIBS = ${top_builddir}/lib/@WX_TARGET_LIBRARY@ $(EXTRALIBS) $(APPEXTRALIBS) TOOLKIT = @TOOLKIT@ TOOLKITDIR = @TOOLKIT_DIR@ @@ -56,6 +56,10 @@ MAKEINFO = @MAKEINFO@ SHARED_LD = @SHARED_LD@ +RESFLAGS = @RESFLAGS@ +RESCOMP = @RESCOMP@ +DLLTOOL = @DLLTOOL@ + ########################### Flags ################################# # @@ -65,9 +69,12 @@ SHARED_LD = @SHARED_LD@ # We *must* include CPPFLAGS in both of these, to make sure that all # header files get found. (KB) -CFLAGS = @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ @CFLAGS@ @CPPFLAGS@ -CPPFLAGS = @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ @CXXFLAGS@ @CPPFLAGS@ +CFLAGS = @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CFLAGS@ @CPPFLAGS@ +CPPFLAGS = @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CXXFLAGS@ @CPPFLAGS@ PICFLAGS = @PIC_FLAG@ -LDFLAGS = @LDFLAGS@ +# taking into account how SHARED_LD is defined, appending LDFLAGS to it +# doesn't work, so we put them in the end of the linker command line in +# EXTRALIBS instead (see above) +# LDFLAGS = @LDFLAGS@