ce51dc7507
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20498 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
33 lines
508 B
Scala
33 lines
508 B
Scala
# Symantec DigitalMars C++ makefile
|
|
|
|
WXLIB = $(WXDIR)\lib\wx.lib
|
|
INCDIR = $(WXDIR)\include
|
|
INCLUDE=$(INCDIR)
|
|
|
|
include $(WXDIR)\src\makesc.env
|
|
|
|
$(TARGET).exe: $(TARGET).obj $(TARGET).res
|
|
link $(LDFLAGS) /DELEXECUTABLE /RC $*, $@, $*, $(LIBDIR)\ $(LIBS)
|
|
|
|
|
|
sc32.def:
|
|
echo EXETYPE NT > sc32.def
|
|
echo SUBSYSTEM WINDOWS >> sc32.def
|
|
|
|
clean:
|
|
-del *.obj
|
|
-del *.exe
|
|
-del *.res
|
|
-del *.map
|
|
-del *.rws
|
|
-del *.sym
|
|
-del sc16.def
|
|
|
|
cleanexe:
|
|
-del *.exe
|
|
|
|
relink: cleanexe $(TARGET).exe
|
|
|
|
|
|
|