X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f30dcba95deab69e102f4fccb30168539f4cbdfd..da98e15760bfcad41a5579e64955caadc2e535f3:/samples/grid/makefile.sc diff --git a/samples/grid/makefile.sc b/samples/grid/makefile.sc index 200240cfc9..a2562850c9 100644 --- a/samples/grid/makefile.sc +++ b/samples/grid/makefile.sc @@ -1,37 +1,6 @@ -# Purpose: makefile for grid example (Symantec C++) -# Created: 2000-03-15 - -WXDIR = $(WXWIN) -WXLIB = $(WXDIR)\lib\wx.lib -INCDIR = $(WXDIR)\include -INCLUDE=$(INCDIR) -TARGET=grid - -include $(WXDIR)\src\makesc.env - -grid.exe: grid.obj $(DEFFILE) grid.res - *$(CC) $(LDFLAGS) -o$@ $** $(LIBS) - *$(RC) -k grid.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 - +#Digital Mars (was Symantec) C++ makefile +WXDIR = ..\.. +EXTRALIBS= +TARGET=griddemo +OBJECTS= $(TARGET).obj +include $(WXDIR)\src\makeprog.sc