]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/minimal/makefile.va
added --enable-ps-in-msw configure option
[wxWidgets.git] / samples / minimal / makefile.va
index ba7f61ed13099c87b83317dc8c5393f39dd50794..b0999b172d475c7635b34e09d924f885cc0ee4ee 100644 (file)
@@ -4,22 +4,42 @@
 # Created:  1999
 # Updated:
 # Copyright:    (c) David Webster
+# Licence:  wxWindows Licence
 #
 # Makefile : Builds sample (VisualAgeC++ V3.0, OS/2 PM)
 # Use FINAL=1 argument to nmake to build final version with no debug info.
 
 # Set WXDIR for your system
-WXDIR = $(WXWIN)
-
-WXUSINGDLL=0
+WXDIR=$(WXWIN)
 
 !include $(WXDIR)\src\makeva.env
 
-PROGRAM=$D\minimal
-OBJECTS = $(PROGRAM).obj
+#
+# Define which program this is and what it's path is and where to output to
+#
+PROGRAM=minimal
+THISDIR=$(WXWIN)\samples\$(PROGRAM)
+OPATH=$(THISDIR)\$D
 
-!if [md $D]
+#
+# Make sure output directory is available
+#
+!if [md $(OPATH)]
 !endif
 
+#
+# Standard definitions
+#
+PROGRC=$(THISDIR)\$(PROGRAM).rcO
+OBJECTS=$(OPATH)\$(PROGRAM).obj
+PROGRES=$(OPATH)\$(PROGRAM).res
+PROGTARGET=E:\TEMP\$(PROGRAM).exe
+
+.cpp{$OPATH}.obj:
+    @echo $<
+    icc @<<
+$(CPPFLAGS) /Fo$@ /Tp $<
+<<
+
 !include $(WXDIR)\src\makeprog.va