X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/82052affa7fae89b90755ef4785a2f8b843d5dad..f4cf4fdab2727577d02efdcff3f1773edf2262f0:/samples/thread/makefile.sc?ds=inline diff --git a/samples/thread/makefile.sc b/samples/thread/makefile.sc index b0965c1b96..839478d57d 100644 --- a/samples/thread/makefile.sc +++ b/samples/thread/makefile.sc @@ -1,35 +1,9 @@ -# Symantec C++ makefile for thread example -# NOTE that peripheral libraries are now dealt in main wxWindows makefile. +# Purpose: makefile for thread example (Symantec C++) +# Created: 2000-03-15 -WXDIR = $(WXWIN) -!include $(WXDIR)\src\makesc.env +WXDIR = ..\.. +TARGET=thread +OBJECTS = $(TARGET).obj +EXTRALIBS = +include $(WXDIR)\src\makeprog.sc -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) - -LIBS=$(WXLIB) libw.lib commdlg.lib shell.lib - -.$(SRCSUFF).obj: - *$(CC) -c $(CFLAGS) -I$(INCLUDE) $< - -.rc.res: - *$(RC) -r -I$(INCLUDE) $< - -test.exe: test.obj test.def test.res - *$(CC) $(LDFLAGS) -o$@ $** $(LIBS) - -clean: - -del *.obj - -del *.exe - -del *.res - -del *.map - -del *.rws