]>
Commit | Line | Data |
---|---|---|
059b6462 CE |
1 | # Symantec DigitalMars C++ makefile |
2 | ||
3 | WXLIB = $(WXDIR)\lib\wx.lib | |
4 | INCDIR = $(WXDIR)\include | |
5 | INCLUDE=$(INCDIR) | |
6 | ||
7 | include $(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 |
13 | clean: |
14 | -del *.obj | |
15 | -del *.exe | |
16 | -del *.res | |
17 | -del *.map | |
18 | -del *.rws | |
ce51dc75 | 19 | -del *.sym |
b911bc32 | 20 | |
ce51dc75 CE |
21 | |
22 | cleanexe: | |
23 | -del *.exe | |
24 | ||
25 | relink: cleanexe $(TARGET).exe | |
26 | ||
27 | ||
28 |