]> git.saurik.com Git - wxWidgets.git/blame - samples/internat/makefile.sc
Initial revision
[wxWidgets.git] / samples / internat / makefile.sc
CommitLineData
c801d85f
KB
1# Symantec C++ makefile for minimal example
2# NOTE that peripheral libraries are now dealt in main wxWindows makefile.
3
4WXDIR = $(WXWIN)
5!include $(WXDIR)\src\makesc.env
6
7WXLIB = $(WXDIR)\lib\wx.lib
8INCDIR = $(WXDIR)\include
9MSWINC = $(INCDIR)\msw
10BASEINC = $(INCDIR)\base
11
12CC=sc
13RC=rc
14CFLAGS = -o -ml -W -Dwx_msw
15LDFLAGS = -ml -W
16
17INCLUDE=$(BASEINC);$(MSWINC)
18
19LIBS=$(WXLIB) libw.lib commdlg.lib shell.lib
20
21.$(SRCSUFF).obj:
22 *$(CC) -c $(CFLAGS) -I$(INCLUDE) $<
23
24.rc.res:
25 *$(RC) -r -I$(INCLUDE) $<
26
27minimal.exe: minimal.obj minimal.def minimal.res
28 *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
29
30clean:
31 -del *.obj
32 -del *.exe
33 -del *.res
34 -del *.map
35 -del *.rws