X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2286341c8d8c72b3eb65ffe23cfc8756f841b1c3..5a8e93c455321689ccdc0d7f7a0ae124bb65d592:/samples/statbar/makefile.sc diff --git a/samples/statbar/makefile.sc b/samples/statbar/makefile.sc index 773fdc1c4b..0f0374c7c0 100644 --- a/samples/statbar/makefile.sc +++ b/samples/statbar/makefile.sc @@ -1,37 +1,6 @@ -# Purpose: makefile for statbar example (Symantec C++) -# Created: 2000-02-04 - -WXDIR = $(WXWIN) -WXLIB = $(WXDIR)\lib\wx.lib -INCDIR = $(WXDIR)\include -INCLUDE=$(INCDIR) +#Makefile from wxHatch for Symantec/Digital Mars compiler +WXDIR=..\.. TARGET=statbar - -include $(WXDIR)\src\makesc.env - -statbar.exe: statbar.obj $(DEFFILE) statbar.res - *$(CC) $(LDFLAGS) -o$@ $** $(LIBS) - *$(RC) -k statbar.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