]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/validate/makefile.sc
reveretd change commenting out IMPLEMENT_DYNAMIC_CLASS
[wxWidgets.git] / samples / validate / makefile.sc
index 8709d2ca0feab6db54586290ea227d8369fe1230..6245a2917dd323bf4842dafad57a9bbb19a818a2 100644 (file)
@@ -1,35 +1,37 @@
-# Symantec C++ makefile for minimal example
-# NOTE that peripheral libraries are now dealt in main wxWindows makefile.
+# Purpose: makefile for validate example (Symantec C++)
+# Created: 2000-03-14
 
 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=validate
 
-LIBS=$(WXLIB) libw.lib commdlg.lib shell.lib
+include $(WXDIR)\src\makesc.env
 
-.$(SRCSUFF).obj:
-       *$(CC) -c $(CFLAGS) -I$(INCLUDE) $<
+validate.exe: validate.obj $(DEFFILE) validate.res
+       *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
+    *$(RC) -k validate.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
+