]> git.saurik.com Git - wxWidgets.git/blame - src/makeprog.sc
Applied patch [ 803473 ] wxListCtrl header height bugfix
[wxWidgets.git] / src / makeprog.sc
CommitLineData
059b6462
CE
1# Symantec DigitalMars C++ makefile
2
3WXLIB = $(WXDIR)\lib\wx.lib
4INCDIR = $(WXDIR)\include
5INCLUDE=$(INCDIR)
6
7include $(WXDIR)\src\makesc.env
8
b911bc32 9$(TARGET).exe: $(OBJECTS) $(TARGET).res
f4bf6763 10 link $(LDFLAGS) /DELEXECUTABLE /RC -L/exet:nt/su:windows $(OBJECTS), $@, $*, $(LIBDIR)\ $(LIBS)
059b6462
CE
11
12
059b6462
CE
13clean:
14 -del *.obj
15 -del *.exe
16 -del *.res
17 -del *.map
18 -del *.rws
ce51dc75 19 -del *.sym
b911bc32 20
ce51dc75
CE
21
22cleanexe:
23 -del *.exe
24
25relink: cleanexe $(TARGET).exe
26
27
28