]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/dnd/makefile.dos
renamed CodeWarrior 5 projects (added new ones as well)
[wxWidgets.git] / samples / dnd / makefile.dos
index 46906a90e461fa62f11797c61312882b697822b5..dd90a7a9df4e0a2faf6fe4edbaea5578d930e36e 100644 (file)
@@ -1,65 +1,17 @@
 #
 # File:                makefile.dos
 # Author:      Julian Smart
-# Created:     1993
+# Created:     1998
 # Updated:     
-# Copyright:   (c) 1993, AIAI, University of Edinburgh
 #
-# "%W% %G%"
-#
-# Makefile : Builds dnd example (DOS).
+# Makefile : Builds 16-bit sample, VC++ 1.5
 # Use FINAL=1 argument to nmake to build final version with no debugging
 # info
 
 WXDIR = $(WXWIN)
 
-!include $(WXDIR)\src\makemsc.env
-
-THISDIR = $(WXDIR)\samples\dnd
-
-!ifndef FINAL
-FINAL=0
-!endif
-
-HEADERS =
-SOURCES = dnd.$(SRCSUFF)
-OBJECTS = dnd.obj
-
-all:    dnd.exe
-
-wx:
-        cd $(WXDIR)\src\msw
-        nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(THISDIR)
-
-wxclean:
-        cd $(WXDIR)\src\msw
-        nmake -f makefile.dos clean
-        cd $(THISDIR)
-
-dnd.exe:      $(WXDIR)\src\msw\dummy.obj $(WXLIB) dnd.obj dnd.def dnd.res
-        link $(LINKFLAGS) @<<
-dnd.obj $(WXDIR)\src\msw\dummy.obj,
-dnd,
-NUL,
-$(LIBS),
-dnd.def
-;
-<<
-        rc -K dnd.res
-
-dnd.obj:      dnd.$(SRCSUFF)
-        cl @<<
-$(CPPFLAGS) /c /Tp $*.$(SRCSUFF)
-<<
+TARGET=dnd
+OBJECTS=$(TARGET).obj
 
-dnd.res :      dnd.rc $(WXDIR)\include\wx\msw\wx.rc
-    rc -r /i$(WXDIR)\include dnd
+!include $(WXDIR)\src\makeprog.msc
 
-clean:
-        -erase *.obj
-        -erase *.exe
-        -erase *.res
-        -erase *.map
-        -erase *.sbr
-        -erase *.pdb