X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/457814b5aa2ee5c83abc65a6aee2a3ebcb1af34f..a2d541ca9c552d1a30ba75970968a7a220f4955a:/samples/treectrl/makefile.sc

diff --git a/samples/treectrl/makefile.sc b/samples/treectrl/makefile.sc
index 8709d2ca0f..058a4bb27b 100644
--- a/samples/treectrl/makefile.sc
+++ b/samples/treectrl/makefile.sc
@@ -1,35 +1,37 @@
-# Symantec C++ makefile for minimal example
-# NOTE that peripheral libraries are now dealt in main wxWindows makefile.
+# Purpose: makefile for treetest example (Symantec C++)
+# Created: 2000-03-15
 
 WXDIR = $(WXWIN)
-!include $(WXDIR)\src\makesc.env
-
 WXLIB = $(WXDIR)\lib\wx.lib
 INCDIR = $(WXDIR)\include
-MSWINC = $(INCDIR)\msw
-BASEINC = $(INCDIR)\base
-
-CC=sc
-RC=rc
-CFLAGS = -o -ml -W -Dwx_msw
-LDFLAGS = -ml -W
-
-INCLUDE=$(BASEINC);$(MSWINC)
+INCLUDE=$(INCDIR)
+TARGET=treetest
 
-LIBS=$(WXLIB) libw.lib commdlg.lib shell.lib
+include $(WXDIR)\src\makesc.env
 
-.$(SRCSUFF).obj:
-	*$(CC) -c $(CFLAGS) -I$(INCLUDE) $<
+treetest.exe: treetest.obj $(DEFFILE) treetest.res
+	*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
+    *$(RC) -k treetest.res
 
-.rc.res:
-	*$(RC) -r -I$(INCLUDE) $<
+sc32.def:
+     echo EXETYPE NT > sc32.def
+     echo SUBSYSTEM WINDOWS >> sc32.def
 
-minimal.exe: minimal.obj minimal.def minimal.res
-	*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
+sc16.def:
+     echo NAME $(TARGET) > sc16.def
+     echo EXETYPE WINDOWS >> sc16.def
+     echo STUB         'WINSTUB.EXE' >> sc16.def
+     echo CODE         PRELOAD MOVEABLE DISCARDABLE >> sc16.def
+     echo DATA         PRELOAD MOVEABLE MULTIPLE >> sc16.def
+     echo HEAPSIZE     1024 >> sc16.def
+     echo STACKSIZE    8192 >> sc16.def
 
 clean:
-        -del *.obj
+    -del *.obj
 	-del *.exe
 	-del *.res
 	-del *.map
 	-del *.rws
+    -del sc32.def
+    -del sc16.def
+