X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d9b77fb236dcaafffd4bada3d03e686e780e7272..2ec6905c69c73f908533697c770c690657f4371c:/src/make.env.in diff --git a/src/make.env.in b/src/make.env.in index d48323dce8..356a9fbbab 100644 --- a/src/make.env.in +++ b/src/make.env.in @@ -10,9 +10,10 @@ ####################### GENERAL SETTINGS ############################ - -EXTRA_LIBS = @EXTRA_LIBS@ -LDLIBS = ${top_builddir}/lib/@WX_TARGET_LIBRARY@ $(EXTRA_LIBS) +# see comment near LDFLAGS at the end of file +EXTRALIBS = @LDFLAGS@ @EXTRA_LIBS@ +OPENGLLIBS = @OPENGL_LIBS@ +LDLIBS = $(APPEXTRALIBS) ${top_builddir}/lib/@WX_TARGET_LIBRARY@ $(EXTRALIBS) TOOLKIT = @TOOLKIT@ TOOLKITDIR = @TOOLKIT_DIR@ @@ -20,7 +21,7 @@ TOOLKITDIR = @TOOLKIT_DIR@ WXLIB = @WX_LIBRARY_NAME_STATIC@ WXSHLIB = @WX_LIBRARY_NAME_SHARED@ -EXTRADEFS = -D"wxINSTALL_PREFIX=\"@prefix@\"" +EXTRADEFS="-DwxINSTALL_PREFIX=\"@prefix@\"" ########################### VERSION ################################# @@ -56,18 +57,29 @@ MAKEINFO = @MAKEINFO@ SHARED_LD = @SHARED_LD@ +RESFLAGS = @RESFLAGS@ +RESCOMP = @RESCOMP@ +REZ = @REZ@ +REZFLAGS = @REZFLAGS@ +DEREZ = @DEREZ@ +DEREZFLAGS = @DEREZFLAGS@ +DLLTOOL = @DLLTOOL@ + ########################### Flags ################################# # -# @CPPFLAGS@ (gnu standard) is not C++ flags, but flags for the "cpp" +# CPPFLAGS (gnu standard) is not C++ flags, but flags for the "cpp" # preprocessor. Unfortunately whoever wrote this now uses CPPFLAGS for # C++ like CFLAGS for C. :-( -# We *must* include @CPPFLAGS@ in both of these, to make sure that all +# 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@ $(EXTRADEFS) -CPPFLAGS = @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ @CXXFLAGS@ @CPPFLAGS@ $(EXTRADEFS) +CFLAGS = $(APPEXTRACFLAGS) $(APPEXTRACPPFLAGS) @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CFLAGS@ @CPPFLAGS@ @CODE_GEN_FLAGS@ +CPPFLAGS = $(APPEXTRACXXFLAGS) $(APPEXTRACPPFLAGS) @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CXXFLAGS@ @CPPFLAGS@ @CODE_GEN_FLAGS_CXX@ 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@