]> git.saurik.com Git - wxWidgets.git/blob - samples/calendar/makefile.sc
makefile for the calendar sample as generated by makegen
[wxWidgets.git] / samples / calendar / makefile.sc
1 # Purpose: makefile for calendar example (Symantec C++)
2 # Created: 2000-01-03
3
4 WXDIR = $(WXWIN)
5 WXLIB = $(WXDIR)\lib\wx.lib
6 INCDIR = $(WXDIR)\include
7 INCLUDE=$(INCDIR)
8 TARGET=calendar
9
10 include $(WXDIR)\src\makesc.env
11
12 calendar.exe: calendar.obj $(DEFFILE) calendar.res
13 *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
14 *$(RC) -k calendar.res
15
16 sc32.def:
17 echo EXETYPE NT > sc32.def
18 echo SUBSYSTEM WINDOWS >> sc32.def
19
20 sc16.def:
21 echo NAME $(TARGET) > sc16.def
22 echo EXETYPE WINDOWS >> sc16.def
23 echo STUB 'WINSTUB.EXE' >> sc16.def
24 echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
25 echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
26 echo HEAPSIZE 1024 >> sc16.def
27 echo STACKSIZE 8192 >> sc16.def
28
29 clean:
30 -del *.obj
31 -del *.exe
32 -del *.res
33 -del *.map
34 -del *.rws
35 -del sc32.def
36 -del sc16.def
37