]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/exec/makefile.sc
make it possible to use wxConsoleApp in GUI build
[wxWidgets.git] / samples / exec / makefile.sc
index e1a3a1a4f6b8ebfa7ef1f3f8705e1736d770ff8f..04ebb1facedfe8727fbc063688eb48f3aed0af84 100644 (file)
@@ -1,37 +1,6 @@
-# Purpose: makefile for exec example (Symantec C++)
-# Created: 2000-03-14
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler 
+WXDIR=..\..
 TARGET=exec
-
-include $(WXDIR)\src\makesc.env
-
-exec.exe: exec.obj $(DEFFILE) exec.res
-       *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
-    *$(RC) -k exec.res
-
-sc32.def:
-     echo EXETYPE NT > sc32.def
-     echo SUBSYSTEM WINDOWS >> sc32.def
-
-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 *.exe
-       -del *.res
-       -del *.map
-       -del *.rws
-    -del sc32.def
-    -del sc16.def
-
+OBJECTS = $(TARGET).obj 
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc