<depends>xmllib</depends>
<command>
- (test -d utils/wxrc && cd utils/wxrc && $(DOLLAR)(MAKE) all) || true
+ (if test -d utils/wxrc ; then cd utils/wxrc && $(DOLLAR)(MAKE) all ; fi)
</command>
</action>
<action id="clean-wxrc" cond="USE_XRC=='1'">
<dependency-of>clean</dependency-of>
<command>
- (test -d utils/wxrc && cd utils/wxrc && $(DOLLAR)(MAKE) clean) || true
+ (if test -d utils/wxrc ; then cd utils/wxrc && $(DOLLAR)(MAKE) clean ; fi)
</command>
</action>
<action id="install-wxrc" cond="USE_XRC=='1'">
<dependency-of>install</dependency-of>
<depends>wxrc</depends>
<command>
- (test -d utils/wxrc && cd utils/wxrc && $(DOLLAR)(MAKE) install) || true
+ (if test -d utils/wxrc ; then cd utils/wxrc && $(DOLLAR)(MAKE) install ; fi)
</command>
</action>
</action>
<set var="RCDEFS_H">
- <if cond="TOOLKIT=='MSW'">
- lib/wx/include/$(TOOLCHAIN_FULLNAME)/wx/msw/rcdefs.h
- </if>
+ <if cond="TOOLKIT=='MSW'">msw/rcdefs.h</if>
</set>
-
- <data-files>
- <srcdir>$(BUILDDIR)</srcdir>
+ <headers>
+ <srcdir>
+ $(BUILDDIR)/lib/wx/include/$(TOOLCHAIN_FULLNAME)/wx
+ </srcdir>
<files>
- lib/wx/include/$(TOOLCHAIN_FULLNAME)/wx/setup.h
- $(RCDEFS_H)
+ setup.h $(RCDEFS_H)
</files>
- <install-to>$(LIBDIR)/wx/include/$(TOOLCHAIN_FULLNAME)/wx</install-to>
- </data-files>
+ <install-to>
+ $(LIBDIR)/wx/include/$(TOOLCHAIN_FULLNAME)/wx
+ </install-to>
+ </headers>
<headers>
<srcdir>$(SRCDIR)/include</srcdir>
<dependency-of>all</dependency-of>
<set var="__targetname">$(MACOS_R)</set>
<command>
- $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/cocoa/dummy.r -o $(MACOS_RSRC)
+ $(REZ) -d __UNIX__ -useDF $(top_srcdir)/src/cocoa/dummy.r -o $(MACOS_RSRC)
$(DEREZ) $(MACOS_RSRC) -useDF >$(MACOS_R)
</command>
<clean-files>$(MACOS_RSRC) $(MACOS_R)</clean-files>
<!-- create rcdefs.h on Windows: -->
- <if cond="FORMAT in ['borland','mingw','msvc','watcom']">
+ <if cond="FORMAT in ['borland','mingw','msvc','watcom'] and TOOLKIT == 'MSW'">
<mkdir id="libdir_setup_wx_msw">
<depends>libdir_setup_wx</depends>
<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>