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