mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-09-16 18:10:34 +08:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21129 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
29 lines
434 B
Python
29 lines
434 B
Python
# Symantec DigitalMars C++ makefile
|
|
|
|
WXLIB = $(WXDIR)\lib\wx.lib
|
|
INCDIR = $(WXDIR)\include
|
|
INCLUDE=$(INCDIR)
|
|
|
|
include $(WXDIR)\src\makesc.env
|
|
|
|
$(TARGET).exe: $(OBJECTS) $(TARGET).res
|
|
link $(LDFLAGS) /DELEXECUTABLE /RC -L/exet:nt/su:windows $(OBJECTS), $@, $*, $(LIBDIR)\ $(LIBS)
|
|
|
|
|
|
clean:
|
|
-del *.obj
|
|
-del *.exe
|
|
-del *.res
|
|
-del *.map
|
|
-del *.rws
|
|
-del *.sym
|
|
|
|
|
|
cleanexe:
|
|
-del *.exe
|
|
|
|
relink: cleanexe $(TARGET).exe
|
|
|
|
|
|
|