]> git.saurik.com Git - wxWidgets.git/blame - samples/opengl/isosurf/makefile.unx
final (touch wood) tidy after things went pearshaped on line 666
[wxWidgets.git] / samples / opengl / isosurf / makefile.unx
CommitLineData
8b089c5e
JS
1#
2# File: makefile.unx
3# Author: Julian Smart
4# Created: 1998
5# Updated:
6# Copyright: (c) 1998 Julian Smart
7#
8# "%W% %G%"
9#
10# Makefile for isosurf example (UNIX).
11
12PROGRAM=isosurf
13
c661ecca 14CC = gcc
8b089c5e 15
c661ecca 16OBJECTS = $(PROGRAM).o
8b089c5e 17
c661ecca 18# implementation
8b089c5e 19
c661ecca
RR
20.SUFFIXES: .o .cpp
21
22.cpp.o :
23 $(CC) -c `wx-config --cflags` -o $@ $<
24
25all: $(PROGRAM) isosurf.dat
26
27$(PROGRAM): $(OBJECTS)
28 $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` -lwx_gtk_gl -lMesaGL -lMesaGLU
29
30clean:
31 rm -f *.o $(PROGRAM)
8b089c5e
JS
32
33isosurf.dat: isosurf.dat.gz
34 gzip -c -d isosurf.dat.gz > isosurf.dat
35