]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/makefile.gcc
Added wxDataViewListCtrl, use it in the sample
[wxWidgets.git] / samples / makefile.gcc
index 346353249aa6a94f5460ee73614cc7a954bee266..050587f0bda54cfb17005401d61f58a5f3cfc51a 100644 (file)
@@ -35,7 +35,7 @@ MAKEARGS = LINK_DLL_FLAGS="$(LINK_DLL_FLAGS)" \
 
 ### Targets: ###
 
-all: access animate artprov aui calendar caret collpane config combo console controls dataview dialogs dialup display dnd docview dragimag drawing erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listctrl mdi mediaplayer menu minimal mobile nativdlg notebook oleauto opengl ownerdrw popup printing propgrid regtest render richtext sashtest scroll scrollsub shaped sockets sound splash splitter statbar stc taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard wrapsizer
+all: access animate artprov aui calendar caret clipboard collpane config combo console controls dataview dialogs dialup display dnd docview dragimag drawing erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listctrl mdi mediaplayer menu minimal mobile nativdlg notebook oleauto opengl ownerdrw popup printing propgrid regtest render richtext sashtest scroll shaped sockets sound splash splitter statbar stc taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard wrapsizer
 
 clean: 
        -if exist .\*.o del .\*.o
@@ -46,6 +46,7 @@ clean:
        $(MAKE) -C aui -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C calendar -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C caret -f makefile.gcc $(MAKEARGS) clean
+       $(MAKE) -C clipboard -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C collpane -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C config -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C combo -f makefile.gcc $(MAKEARGS) clean
@@ -93,7 +94,6 @@ clean:
        $(MAKE) -C richtext -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C sashtest -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C scroll -f makefile.gcc $(MAKEARGS) clean
-       $(MAKE) -C scrollsub -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C shaped -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C sockets -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C sound -f makefile.gcc $(MAKEARGS) clean
@@ -112,6 +112,7 @@ clean:
        $(MAKE) -C widgets -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C wizard -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C wrapsizer -f makefile.gcc $(MAKEARGS) clean
+       $(MAKE) -C flash -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C mfc -f makefile.gcc $(MAKEARGS) clean
        $(MAKE) -C memcheck -f makefile.gcc $(MAKEARGS) clean
 
@@ -133,6 +134,9 @@ calendar:
 caret: 
        $(MAKE) -C caret -f makefile.gcc $(MAKEARGS) all
 
+clipboard: 
+       $(MAKE) -C clipboard -f makefile.gcc $(MAKEARGS) all
+
 collpane: 
        $(MAKE) -C collpane -f makefile.gcc $(MAKEARGS) all
 
@@ -274,9 +278,6 @@ sashtest:
 scroll: 
        $(MAKE) -C scroll -f makefile.gcc $(MAKEARGS) all
 
-scrollsub: 
-       $(MAKE) -C scrollsub -f makefile.gcc $(MAKEARGS) all
-
 shaped: 
        $(MAKE) -C shaped -f makefile.gcc $(MAKEARGS) all
 
@@ -331,20 +332,22 @@ wizard:
 wrapsizer: 
        $(MAKE) -C wrapsizer -f makefile.gcc $(MAKEARGS) all
 
+flash: 
+       $(MAKE) -C flash -f makefile.gcc $(MAKEARGS) all
+
 mfc: 
        $(MAKE) -C mfc -f makefile.gcc $(MAKEARGS) all
 
 memcheck: 
        $(MAKE) -C memcheck -f makefile.gcc $(MAKEARGS) all
 
-.PHONY: all clean access animate artprov aui calendar caret collpane config combo \
-       console controls dataview dialogs dialup display dnd docview dragimag drawing \
-       erase event exec except font grid help htlbox html image internat ipc joytest \
+.PHONY: all clean access animate artprov aui calendar caret clipboard collpane config \
+       combo console controls dataview dialogs dialup display dnd docview dragimag \
+       drawing erase event exec except font grid help htlbox html image internat ipc joytest \
        keyboard layout listctrl mdi mediaplayer menu minimal mobile nativdlg notebook \
        oleauto opengl ownerdrw popup printing propgrid regtest render richtext sashtest \
-       scroll scrollsub shaped sockets sound splash splitter statbar stc taskbar text \
-       thread toolbar treectrl typetest validate vscroll widgets wizard wrapsizer mfc \
-       memcheck
+       scroll shaped sockets sound splash splitter statbar stc taskbar text thread toolbar \
+       treectrl typetest validate vscroll widgets wizard wrapsizer flash mfc memcheck
 
 
 SHELL := $(COMSPEC)