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