]> git.saurik.com Git - wxWidgets.git/blame - contrib/samples/animate/makefile.va
Removal of second part of dsw files (as requested by Jamie Gadd).
[wxWidgets.git] / contrib / samples / animate / makefile.va
CommitLineData
4638d697
JS
1#
2# File: makefile.va
3# Author: David Webster
4# Created: 1999
5# Updated:
6# Copyright: (c) David Webster
c6afb815 7# License: wxWindows license
4638d697
JS
8# Makefile : Builds sample (VisualAgeC++ V3.0, OS/2 PM)
9# Use FINAL=1 argument to nmake to build final version with no debug info.
10
11# Set WXDIR for your system
12WXDIR=$(WXWIN)
13
14!include $(WXDIR)\src\makeva.env
15
16#
17# Define which program this is and what it's path is and where to output to
18#
19PROGRAM=anitest
20THISDIR=$(WXWIN)\samples\$(PROGRAM)
21OPATH=$(THISDIR)\$D
22
23#
24# Make sure output directory is available
25#
26!if [md $(OPATH)]
27!endif
28
29#
30# Standard definitions
31#
32PROGRC=$(THISDIR)\$(PROGRAM).rcO
33OBJECTS=$(OPATH)\$(PROGRAM).obj $(OPATH)\animate.obj
34PROGRES=$(OPATH)\$(PROGRAM).res
35PROGTARGET=$(OPATH)\$(PROGRAM).exe
36
37.cpp{$OPATH}.obj:
38 @echo $<
39 icc @<<
40$(CPPFLAGS) /Fo$@ /Tp $<
41<<
42
43!include $(WXDIR)\src\makeprog.va
44