update to make digitalmars link minimal sample

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20291 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2003-04-19 19:42:44 +00:00
parent 48bac87b56
commit 059b646254
2 changed files with 41 additions and 11 deletions

23
src/makeprog.sc Normal file
View File

@@ -0,0 +1,23 @@
# 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) $*, $@, $*, $(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 sc16.def