+
+ <!-- copy setup.h on DOS/OS2/Windows: -->
+ <if cond="FORMAT!='autoconf' and TOOLKIT in ['PM','MSW','MGL','MOTIF']">
+ <mkdir id="libdir">
+ <dir>$(LIBDIRNAME)</dir>
+ </mkdir>
+ <mkdir id="libdir_setup">
+ <depends>libdir</depends>
+ <dir>$(SETUPHDIR)</dir>
+ </mkdir>
+ <mkdir id="libdir_setup_wx">
+ <depends>libdir_setup</depends>
+ <dependency-of>setup_h</dependency-of>
+ <dir>$(SETUPHDIR)/wx</dir>
+ </mkdir>
+
+ <set var="SETUP_H_SUBDIR">
+ <if cond="WXUNIV=='1'">univ</if>
+ <if cond="WXUNIV=='0' and TOOLKIT!='PM'">$(TOOLKIT_LOWERCASE)</if>
+ <if cond="WXUNIV=='0' and TOOLKIT=='PM'">os2</if>
+ </set>
+
+ <copy-file-to-file-if-not-exist id="master_setup.h">
+ <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup0.h</src>
+ <dst>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</dst>
+ <dependency-of>setup_h</dependency-of>
+ </copy-file-to-file-if-not-exist>
+ <copy-file-to-file-if-not-exist id="setup.h">
+ <dependency-of>setup_h</dependency-of>
+ <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</src>
+ <dst>$(SETUPHDIR)/wx/setup.h</dst>
+ </copy-file-to-file-if-not-exist>
+
+ </if>
+
+
+ <!-- create rcdefs.h on Windows: -->
+ <if cond="FORMAT in ['borland','mingw','msvc','watcom'] and TOOLKIT == 'MSW'">
+
+ <mkdir id="libdir_setup_wx_msw">
+ <depends>libdir_setup_wx</depends>
+ <dir>$(SETUPHDIR)/wx/msw</dir>
+ </mkdir>
+
+ <action id="rcdefs.h">
+
+ <!-- Can't seem to set id to a name with a dollar sign
+ so use __targetname as a temporary work around -->
+ <set var="__targetname">$(SETUPHDIR)\wx\msw\rcdefs.h</set>
+
+ <dependency-of>setup_h</dependency-of>
+ <depends>libdir_setup_wx_msw</depends>
+ <depends-on-file>$(SRCDIR)/include/wx/msw/genrcdefs.h</depends-on-file>
+
+ <command>
+ $(DOLLAR)(CPP) "$(SRCDIR)\include\wx\msw\genrcdefs.h" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
+ </command>
+
+ </action>
+
+ </if>
+
+
+ <if cond="FORMAT=='autoconf'">
+
+ <!-- Show this banner after installation: -->
+ <modify-target target="install">
+ <command>
+@echo " "
+@echo " ------------------------------------------------------"
+@echo " "
+@echo " The installation of wxWidgets is finished. On certain"
+@echo " platforms (e.g. Linux) you'll now have to run ldconfig"
+@echo " if you installed a shared library and also modify the"
+@echo " LD_LIBRARY_PATH (or equivalent) environment variable."
+@echo " "
+@echo " wxWidgets comes with no guarantees and doesn't claim"
+@echo " to be suitable for any purpose."
+@echo " "
+@echo " Read the wxWidgets Licence on licencing conditions."
+@echo " "
+@echo " ------------------------------------------------------"
+@echo " "
+ </command>
+ </modify-target>
+
+ <!-- add "make dist" target to autoconf: -->
+ <set var="VARS_DONT_ELIMINATE" append="1">
+ ALL_PORTS_BASE_HEADERS ALL_BASE_SOURCES WX_VERSION
+ </set>
+ <fragment format="autoconf" file="make_dist.mk"/>
+
+ </if>
+
+ <include file="build_cfg.bkl"/>
+