f4bf676380
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21129 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
29 lines
434 B
Scala
29 lines
434 B
Scala
# 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
|
|
|
|
|
|
|