]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/mdi/makefile.dos
wxAUI: fixed pane saving design thinko
[wxWidgets.git] / samples / mdi / makefile.dos
index 1bd3983dc80c39cc4cdf1d310185d623984dcd53..54c483503e527554a7b7d01740c35ace5bc954bc 100644 (file)
@@ -1,63 +1,17 @@
 #
 # File:                makefile.dos
 # Author:      Julian Smart
-# Created:     1993
+# Created:     1998
 # Updated:     
-# Copyright:   (c) 1993, AIAI, University of Edinburgh
 #
-# "%W% %G%"
-#
-# Makefile : Builds mdi 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\mdi
-INC=/I$(WXDIR)\include
-
-HEADERS = mdi.h
-SOURCES = mdi.$(SRCSUFF)
-OBJECTS = mdi.obj
-
-all:    mdi.exe
-
-wx:
-        cd $(WXDIR)\src\msw
-        nmake -f makefile.dos
-        cd $(THISDIR)
-
-wxclean:
-        cd $(WXDIR)\src\msw
-        nmake -f makefile.dos clean
-        cd $(THISDIR)
-
-
-mdi.exe:      $(WXDIR)\src\msw\dummy.obj $(WXLIB) mdi.obj mdi.def mdi.res
-        link $(LINKFLAGS) @<<
-$(WXDIR)\src\msw\dummy.obj mdi.obj,
-mdi,
-NUL,
-$(LIBS),
-mdi.def
-;
-<<
-        rc -K mdi.res
-
-mdi.obj:      mdi.h mdi.$(SRCSUFF)
-        cl @<<
-$(CPPFLAGS) /c /Tp $*.$(SRCSUFF)
-<<
+TARGET=mdi
+OBJECTS = $(TARGET).obj
 
-mdi.res :      mdi.rc $(WXDIR)\include\wx\msw\wx.rc
-       rc -r /i$(WXDIR)\include mdi
+!include $(WXDIR)\src\makeprog.msc
 
-clean:
-        -erase *.obj
-        -erase *.exe
-        -erase *.res
-        -erase *.map
-        -erase *.sbr
-        -erase *.pdb