]> git.saurik.com Git - wxWidgets.git/blame - utils/dialoged/src/makefile.sc
SetTitle() works even if menu was created without title initially (and setting
[wxWidgets.git] / utils / dialoged / src / makefile.sc
CommitLineData
457814b5
JS
1# Symantec C++ makefile for Dialog Editor
2
3WXDIR = $(WXWIN)
4!include $(WXDIR)\src\makesc.env
5
6WXLIB = $(WXDIR)\lib\wx.lib
7INCDIR = $(WXDIR)\include
8MSWINC = $(INCDIR)\msw
9BASEINC = $(INCDIR)\base
10
11CC=sc
12RC=rc
13CFLAGS = -o -ml -W -Dwx_msw
14LDFLAGS = -ml -W
15
16INCLUDE=$(BASEINC);$(MSWINC)
17OBJECTS = wx_resed.obj wx_rdlg.obj wx_reswr.obj wx_repal.obj wx_rprop.obj dialoged.obj
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
27dialoged.exe: $(OBJECTS) dialoged.def dialoged.res
28 *$(CC) $(LDFLAGS) -o$@ $(OBJECTS) dialoged.def $(LIBS)
29 *$(RC) -k dialoged.res
30
31clean:
32 -del *.obj
33 -del *.exe
34 -del *.res
35 -del *.map
36 -del *.rws