]> git.saurik.com Git - wxWidgets.git/blob - utils/glcanvas/samples/isosurf/makefile.vc
Renamed .nt makefiles to .vc and factored them out; made DND sample compile
[wxWidgets.git] / utils / glcanvas / samples / isosurf / makefile.vc
1 #
2 # File: makefile.vc
3 # Author: Julian Smart
4 # Created: 1999
5 # Updated:
6 # Copyright: (c) Julian Smart
7 #
8 # Makefile : Builds sample (VC++, WIN32)
9 # Use FINAL=1 argument to nmake to build final version with no debug info.
10
11 # Set WXDIR for your system
12 WXDIR = $(WXWIN)
13
14 PROGRAM=isosurf
15 OBJECTS = $(PROGRAM).obj
16 EXTRAINC=-I..\..\win
17 EXTRALIBS=$(WXDIR)\lib\glcanvas.lib glu32.lib opengl32.lib
18 EXTRATARGETS=isosurf.dat
19
20 !include $(WXDIR)\src\makeprog.vc
21
22 isosurf.dat: isosurf.dat.gz
23 gzip -c -d isosurf.dat.gz > isosurf.dat
24
25