don't build mfc and memcheck samples by default as they don't always compile (#10031)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@56099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-10-05 22:12:04 +00:00
parent ad4cb2a1df
commit 736c79854b
5 changed files with 42 additions and 39 deletions

View File

@@ -43,7 +43,7 @@ MAKEARGS = -DCC="$(CC)" -DCXX="$(CXX)" -DCFLAGS="$(CFLAGS)" \
### Targets: ### ### Targets: ###
all: access animate artprov aui calendar caret checklst collpane config combo console controls dataview db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer memcheck menu minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render richtext rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard mfc all: access animate artprov aui calendar caret checklst collpane config combo console controls dataview db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer menu minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render richtext rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard
clean: clean:
-if exist .\*.obj del .\*.obj -if exist .\*.obj del .\*.obj
@@ -217,10 +217,6 @@ clean:
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>mediaplayer.bat @echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>mediaplayer.bat
call mediaplayer.bat call mediaplayer.bat
@del mediaplayer.bat @del mediaplayer.bat
@echo cd memcheck >memcheck.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>memcheck.bat
call memcheck.bat
@del memcheck.bat
@echo cd menu >menu.bat @echo cd menu >menu.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>menu.bat @echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>menu.bat
call menu.bat call menu.bat
@@ -373,6 +369,10 @@ clean:
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>mfc.bat @echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>mfc.bat
call mfc.bat call mfc.bat
@del mfc.bat @del mfc.bat
@echo cd memcheck >memcheck.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>memcheck.bat
call memcheck.bat
@del memcheck.bat
access: access:
@echo cd access >access.bat @echo cd access >access.bat
@@ -626,12 +626,6 @@ mediaplayer:
call mediaplayer.bat call mediaplayer.bat
@del mediaplayer.bat @del mediaplayer.bat
memcheck:
@echo cd memcheck >memcheck.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>memcheck.bat
call memcheck.bat
@del memcheck.bat
menu: menu:
@echo cd menu >menu.bat @echo cd menu >menu.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>menu.bat @echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>menu.bat
@@ -860,3 +854,9 @@ mfc:
call mfc.bat call mfc.bat
@del mfc.bat @del mfc.bat
memcheck:
@echo cd memcheck >memcheck.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>memcheck.bat
call memcheck.bat
@del memcheck.bat

View File

@@ -35,7 +35,7 @@ MAKEARGS = LINK_DLL_FLAGS="$(LINK_DLL_FLAGS)" \
### Targets: ### ### Targets: ###
all: access animate artprov aui calendar caret checklst collpane config combo console controls dataview db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer memcheck menu minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render richtext rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard mfc all: access animate artprov aui calendar caret checklst collpane config combo console controls dataview db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer menu minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render richtext rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard
clean: clean:
-if exist .\*.o del .\*.o -if exist .\*.o del .\*.o
@@ -82,7 +82,6 @@ clean:
$(MAKE) -C listctrl -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C listctrl -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C mdi -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C mdi -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C mediaplayer -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C mediaplayer -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C memcheck -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C menu -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C menu -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C minifram -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C minifram -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C minimal -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C minimal -f makefile.gcc $(MAKEARGS) clean
@@ -121,6 +120,7 @@ clean:
$(MAKE) -C widgets -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C widgets -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C wizard -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C wizard -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C mfc -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C mfc -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C memcheck -f makefile.gcc $(MAKEARGS) clean
access: access:
$(MAKE) -C access -f makefile.gcc $(MAKEARGS) all $(MAKE) -C access -f makefile.gcc $(MAKEARGS) all
@@ -248,9 +248,6 @@ mdi:
mediaplayer: mediaplayer:
$(MAKE) -C mediaplayer -f makefile.gcc $(MAKEARGS) all $(MAKE) -C mediaplayer -f makefile.gcc $(MAKEARGS) all
memcheck:
$(MAKE) -C memcheck -f makefile.gcc $(MAKEARGS) all
menu: menu:
$(MAKE) -C menu -f makefile.gcc $(MAKEARGS) all $(MAKE) -C menu -f makefile.gcc $(MAKEARGS) all
@@ -365,7 +362,10 @@ wizard:
mfc: mfc:
$(MAKE) -C mfc -f makefile.gcc $(MAKEARGS) all $(MAKE) -C mfc -f makefile.gcc $(MAKEARGS) all
.PHONY: all clean access animate artprov aui calendar caret checklst collpane config combo console controls dataview db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer memcheck menu minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render richtext rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard mfc memcheck:
$(MAKE) -C memcheck -f makefile.gcc $(MAKEARGS) all
.PHONY: all clean access animate artprov aui calendar caret checklst collpane config combo console controls dataview db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer menu minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render richtext rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard mfc memcheck
SHELL := $(COMSPEC) SHELL := $(COMSPEC)

View File

@@ -34,7 +34,7 @@ MAKEARGS = CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
### Targets: ### ### Targets: ###
all: sub_access sub_animate sub_artprov sub_aui sub_calendar sub_caret sub_checklst sub_collpane sub_config sub_combo sub_console sub_controls sub_dataview sub_db sub_dialogs sub_dialup sub_display sub_dnd sub_docview sub_docvwmdi sub_dragimag sub_drawing sub_dynamic sub_erase sub_event sub_exec sub_except sub_font sub_grid sub_help sub_htlbox sub_html sub_image sub_internat sub_ipc sub_joytest sub_keyboard sub_layout sub_listbox sub_listctrl sub_mdi sub_mediaplayer sub_memcheck sub_menu sub_minifram sub_minimal sub_mobile sub_multimon sub_nativdlg sub_notebook sub_oleauto sub_opengl sub_ownerdrw sub_png sub_popup sub_printing sub_propsize sub_regtest sub_render sub_richtext sub_rotate sub_sashtest sub_scroll sub_scrollsub sub_shaped sub_sockets sub_sound sub_splash sub_splitter sub_statbar sub_taskbar sub_text sub_thread sub_toolbar sub_treectrl sub_typetest sub_validate sub_vscroll sub_widgets sub_wizard sub_mfc all: sub_access sub_animate sub_artprov sub_aui sub_calendar sub_caret sub_checklst sub_collpane sub_config sub_combo sub_console sub_controls sub_dataview sub_db sub_dialogs sub_dialup sub_display sub_dnd sub_docview sub_docvwmdi sub_dragimag sub_drawing sub_dynamic sub_erase sub_event sub_exec sub_except sub_font sub_grid sub_help sub_htlbox sub_html sub_image sub_internat sub_ipc sub_joytest sub_keyboard sub_layout sub_listbox sub_listctrl sub_mdi sub_mediaplayer sub_menu sub_minifram sub_minimal sub_mobile sub_multimon sub_nativdlg sub_notebook sub_oleauto sub_opengl sub_ownerdrw sub_png sub_popup sub_printing sub_propsize sub_regtest sub_render sub_richtext sub_rotate sub_sashtest sub_scroll sub_scrollsub sub_shaped sub_sockets sub_sound sub_splash sub_splitter sub_statbar sub_taskbar sub_text sub_thread sub_toolbar sub_treectrl sub_typetest sub_validate sub_vscroll sub_widgets sub_wizard
clean: clean:
-if exist .\*.obj del .\*.obj -if exist .\*.obj del .\*.obj
@@ -166,9 +166,6 @@ clean:
cd mediaplayer cd mediaplayer
$(MAKE) -f makefile.vc $(MAKEARGS) clean $(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)" cd "$(MAKEDIR)"
cd memcheck
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
cd menu cd menu
$(MAKE) -f makefile.vc $(MAKEARGS) clean $(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)" cd "$(MAKEDIR)"
@@ -283,6 +280,9 @@ clean:
cd mfc cd mfc
$(MAKE) -f makefile.vc $(MAKEARGS) clean $(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)" cd "$(MAKEDIR)"
cd memcheck
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
sub_access: sub_access:
cd access cd access
@@ -494,11 +494,6 @@ sub_mediaplayer:
$(MAKE) -f makefile.vc $(MAKEARGS) all $(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)" cd "$(MAKEDIR)"
sub_memcheck:
cd memcheck
$(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)"
sub_menu: sub_menu:
cd menu cd menu
$(MAKE) -f makefile.vc $(MAKEARGS) all $(MAKE) -f makefile.vc $(MAKEARGS) all
@@ -689,3 +684,8 @@ sub_mfc:
$(MAKE) -f makefile.vc $(MAKEARGS) all $(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)" cd "$(MAKEDIR)"
sub_memcheck:
cd memcheck
$(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)"

View File

@@ -48,7 +48,7 @@ MAKEARGS = CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" &
### Targets: ### ### Targets: ###
all : .SYMBOLIC access animate artprov aui calendar caret checklst collpane config combo console controls dataview db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer memcheck menu minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render richtext rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard mfc all : .SYMBOLIC access animate artprov aui calendar caret checklst collpane config combo console controls dataview db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer menu minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render richtext rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard
clean : .SYMBOLIC clean : .SYMBOLIC
-if exist .\*.obj del .\*.obj -if exist .\*.obj del .\*.obj
@@ -182,9 +182,6 @@ clean : .SYMBOLIC
cd mediaplayer cd mediaplayer
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean
cd $(WATCOM_CWD) cd $(WATCOM_CWD)
cd memcheck
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean
cd $(WATCOM_CWD)
cd menu cd menu
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean
cd $(WATCOM_CWD) cd $(WATCOM_CWD)
@@ -299,6 +296,9 @@ clean : .SYMBOLIC
cd mfc cd mfc
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean
cd $(WATCOM_CWD) cd $(WATCOM_CWD)
cd memcheck
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean
cd $(WATCOM_CWD)
access : .SYMBOLIC access : .SYMBOLIC
cd access cd access
@@ -510,11 +510,6 @@ mediaplayer : .SYMBOLIC
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) all wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) all
cd $(WATCOM_CWD) cd $(WATCOM_CWD)
memcheck : .SYMBOLIC
cd memcheck
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) all
cd $(WATCOM_CWD)
menu : .SYMBOLIC menu : .SYMBOLIC
cd menu cd menu
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) all wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) all
@@ -705,3 +700,8 @@ mfc : .SYMBOLIC
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) all wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) all
cd $(WATCOM_CWD) cd $(WATCOM_CWD)
memcheck : .SYMBOLIC
cd memcheck
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) all
cd $(WATCOM_CWD)

View File

@@ -4,8 +4,11 @@
<include file="../build/bakefiles/config.bkl"/> <include file="../build/bakefiles/config.bkl"/>
<template id="sub"> <template id="optsub">
<dir>$(id)</dir> <dir>$(id)</dir>
</template>
<template id="sub" template="optsub">
<dependency-of>all</dependency-of> <dependency-of>all</dependency-of>
</template> </template>
@@ -52,7 +55,6 @@
<subproject id="listctrl" template="sub"/> <subproject id="listctrl" template="sub"/>
<subproject id="mdi" template="sub"/> <subproject id="mdi" template="sub"/>
<subproject id="mediaplayer" template="sub"/> <subproject id="mediaplayer" template="sub"/>
<subproject id="memcheck" template="sub"/>
<subproject id="menu" template="sub"/> <subproject id="menu" template="sub"/>
<subproject id="minifram" template="sub"/> <subproject id="minifram" template="sub"/>
<subproject id="minimal" template="sub"/> <subproject id="minimal" template="sub"/>
@@ -90,7 +92,8 @@
<subproject id="vscroll" template="sub"/> <subproject id="vscroll" template="sub"/>
<subproject id="widgets" template="sub"/> <subproject id="widgets" template="sub"/>
<subproject id="wizard" template="sub"/> <subproject id="wizard" template="sub"/>
<!-- Put samples most likely to fail at the end --> <!-- These samples don't always build so don't build them by default -->
<subproject id="mfc" template="sub"/> <subproject id="mfc" template="optsub"/>
<subproject id="memcheck" template="optsub"/>
</makefile> </makefile>