added wxrc to the makefiles

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56672 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2008-11-03 22:58:45 +00:00
parent d8a4a85ebc
commit 0e0d3ae110
6 changed files with 60 additions and 10 deletions

View file

@ -34,7 +34,7 @@ MAKEARGS = CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
### Targets: ###
all: sub_emulator sub_helpview sub_hhp2cached sub_ifacecheck sub_screenshotgen
all: sub_emulator sub_helpview sub_hhp2cached sub_ifacecheck sub_screenshotgen sub_wxrc
clean:
-if exist .\*.obj del .\*.obj
@ -55,6 +55,9 @@ clean:
cd screenshotgen\src
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
cd wxrc
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
sub_emulator:
cd emulator\src
@ -81,3 +84,8 @@ sub_screenshotgen:
$(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)"
sub_wxrc:
cd wxrc
$(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)"