X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1542ea396a625766c59d683adbb1d613c1344d50..302e251b4df575dc60eb5bfafc931652dad165ec:/samples/shaped/makefile.sc diff --git a/samples/shaped/makefile.sc b/samples/shaped/makefile.sc index c37d85391b..d40079553d 100644 --- a/samples/shaped/makefile.sc +++ b/samples/shaped/makefile.sc @@ -1,37 +1,6 @@ -# Purpose: makefile for shaped example (Symantec C++) -# Created: 2000-01-03 - -WXDIR = $(WXWIN) -WXLIB = $(WXDIR)\lib\wx.lib -INCDIR = $(WXDIR)\include -INCLUDE=$(INCDIR) +#Makefile from wxHatch for Symantec/Digital Mars compiler +WXDIR=..\.. TARGET=shaped - -include $(WXDIR)\src\makesc.env - -shaped.exe: shaped.obj $(DEFFILE) shaped.res - *$(CC) $(LDFLAGS) -o$@ $** $(LIBS) - *$(RC) -k shaped.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