]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed unused files.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 25 Jul 2006 10:07:16 +0000 (10:07 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 25 Jul 2006 10:07:16 +0000 (10:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40317 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/treectrl/makefile.dos [deleted file]
samples/treectrl/makefile.sc [deleted file]
samples/treectrl/makefile.sl [deleted file]
samples/treectrl/makefile.unx [deleted file]
samples/treectrl/makefile.wat
samples/treectrl/treetest.pro [deleted file]

diff --git a/samples/treectrl/makefile.dos b/samples/treectrl/makefile.dos
deleted file mode 100644 (file)
index 50832fa..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-# Purpose: makefile for treectrl example (VC++ 1.5x)
-# Created: 2000-03-15
-
-WXDIR = $(WXWIN)
-
-TARGET=treetest
-OBJECTS=$(TARGET).obj
-
-!include $(WXDIR)\src\makeprog.msc
-
diff --git a/samples/treectrl/makefile.sc b/samples/treectrl/makefile.sc
deleted file mode 100644 (file)
index a19cdce..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#Makefile from wxHatch for Symantec/Digital Mars compiler 
-WXDIR=..\..
-TARGET=treetest
-OBJECTS = $(TARGET).obj 
-EXTRALIBS =
-include $(WXDIR)\src\makeprog.sc
diff --git a/samples/treectrl/makefile.sl b/samples/treectrl/makefile.sl
deleted file mode 100644 (file)
index 6a09150..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-# Purpose: makefile for treectrl example (Salford C++)
-# Created: 2000-03-15
-
-PROGRAM = treetest
-OBJECTS = $(PROGRAM).obj
-
-include ..\..\src\makeprog.sl
-
-all:        wx $(TARGET)
-
-wx:
-    cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
-    cd $(WXDIR)\samples\treectrl
-
diff --git a/samples/treectrl/makefile.unx b/samples/treectrl/makefile.unx
deleted file mode 100644 (file)
index 5c422e1..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-# Purpose: makefile for treectrl example (Unix)
-# Created: 2000-03-15
-
-CXX = $(shell wx-config --cxx)
-
-PROGRAM = treetest
-
-OBJECTS = $(PROGRAM).o
-
-# implementation
-
-.SUFFIXES:     .o .cpp
-
-.cpp.o :
-       $(CXX) -c `wx-config --cxxflags` -o $@ $<
-
-all:    $(PROGRAM)
-
-$(PROGRAM):    $(OBJECTS)
-       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
-
-clean:
-       rm -f *.o $(PROGRAM)
index 1683c017138941d86335fdfca8860388499ee32d..001dad195a573bf5b0e1a7617d49a45d1e67e867 100644 (file)
@@ -233,7 +233,7 @@ clean : .SYMBOLIC
        -if exist $(OBJS)\*.pch del $(OBJS)\*.pch
        -if exist $(OBJS)\treectrl.exe del $(OBJS)\treectrl.exe
 
-$(OBJS)\treectrl.exe :  $(TREECTRL_OBJECTS) $(OBJS)\treectrl_treetest.res
+$(OBJS)\treectrl.exe :  $(TREECTRL_OBJECTS) $(OBJS)\treectrl_sample.res
        @%create $(OBJS)\treectrl.lbc
        @%append $(OBJS)\treectrl.lbc option quiet
        @%append $(OBJS)\treectrl.lbc name $^@
@@ -241,13 +241,13 @@ $(OBJS)\treectrl.exe :  $(TREECTRL_OBJECTS) $(OBJS)\treectrl_treetest.res
        @%append $(OBJS)\treectrl.lbc $(LDFLAGS) $(__DEBUGINFO_1)  libpath $(LIBDIRNAME) system nt_win ref '_WinMain@16'
        @for %i in ($(TREECTRL_OBJECTS)) do @%append $(OBJS)\treectrl.lbc file %i
        @for %i in ( $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)  wxzlib$(WXDEBUGFLAG).lib  wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE)  kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib) do @%append $(OBJS)\treectrl.lbc library %i
-       @%append $(OBJS)\treectrl.lbc option resource=$(OBJS)\treectrl_treetest.res
+       @%append $(OBJS)\treectrl.lbc option resource=$(OBJS)\treectrl_sample.res
        @for %i in () do @%append $(OBJS)\treectrl.lbc option stack=%i
        wlink @$(OBJS)\treectrl.lbc
 
 $(OBJS)\treectrl_treetest.obj :  .AUTODEPEND .\treetest.cpp
        $(CXX) -bt=nt -zq -fo=$^@ $(TREECTRL_CXXFLAGS) $<
 
-$(OBJS)\treectrl_treetest.res :  .AUTODEPEND .\treetest.rc
+$(OBJS)\treectrl_sample.res :  .AUTODEPEND .\..\sample.rc
        wrc -q -ad -bt=nt -r -fo=$^@   -d__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p)  -i=$(SETUPHDIR) -i=.\..\..\include -i=. $(__DLLFLAG_p) -i=.\..\..\samples -dNOPCH $<
 
diff --git a/samples/treectrl/treetest.pro b/samples/treectrl/treetest.pro
deleted file mode 100644 (file)
index fd2a512..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-# this is the project file for the treectrl wxWindows sample
-
-# we generate the VC++ IDE project file, comment this line
-# to generate a makefile for (n)make
-TEMPLATE = vc6app
-
-# wx is mandatory for wxWindows projects
-CONFIG  = wx
-
-# the configurations of wxWindows we want to use: the value below is the
-# default one; possible other values are {Debug|Release}Unicode[Dll]
-#WXCONFIGS = Debug Release DebugDll ReleaseDll
-
-# project files
-SOURCES = treetest.cpp
-RC_FILE = treetest.rc
-TARGET  = treetest