X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9635832dbd8846f79cc818dbd5f6adf6556c6a18..8f974c520a8733158591891458fda10fae4c3950:/src/make.env.in diff --git a/src/make.env.in b/src/make.env.in index 97cfd5d948..c835ab3fab 100644 --- a/src/make.env.in +++ b/src/make.env.in @@ -8,13 +8,18 @@ # Copyright:(c) 1999, Robert Roebling # -########################### VERSION ################################# +####################### GENERAL SETTINGS ############################ -LDLIBS = @LD_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@ -WXLIB = lib@WX_LIBRARY@.a +WXLIB = @WX_LIBRARY_NAME_STATIC@ +WXSHLIB = @WX_LIBRARY_NAME_SHARED@ ########################### VERSION ################################# @@ -22,10 +27,6 @@ WX_MAJOR_VERSION_NUMBER = @WX_MAJOR_VERSION_NUMBER@ WX_MINOR_VERSION_NUMBER = @WX_MINOR_VERSION_NUMBER@ WX_RELEASE_NUMBER = @WX_RELEASE_NUMBER@ -########################### Misc ################################# - -SHELL = @SHELL@ - ########################### Programs ################################# # C++ compiler @@ -52,21 +53,26 @@ RANLIB = @RANLIB@ LD = @LD@ MAKEINFO = @MAKEINFO@ -########################### Flags ################################# - -CFLAGS = @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ @CFLAGS@ -CPPFLAGS = @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ @CXXFLAGS@ - -########################### Rules ################################# +SHARED_LD = @SHARED_LD@ -# Clears all default suffixes -.SUFFIXES: .o .cpp .c +RESFLAGS = @RESFLAGS@ +RESCOMP = @RESCOMP@ +REZ = @REZ@ +REZFLAGS = @REZFLAGS@ +DEREZ = @DEREZ@ +DEREZFLAGS = @DEREZFLAGS@ +DLLTOOL = @DLLTOOL@ -.c.o : - $(CCC) -c $(CFLAGS) -o $@ $< - -.cpp.o : - $(CC) -c $(CPPFLAGS) -o $@ $< +########################### Flags ################################# +CPPFLAGS = ${APPEXTRACPPFLAGS} @CPPFLAGS@ @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ +CFLAGS = ${APPEXTRACFLAGS} ${CPPFLAGS} @CODE_GEN_FLAGS@ @CFLAGS@ +CXXFLAGS = ${APPEXTRACXXFLAGS} ${CPPFLAGS} \ + @CODE_GEN_FLAGS@ @CODE_GEN_FLAGS_CXX@ @CXXFLAGS@ +PICFLAGS = @PIC_FLAG@ +# 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@