Files
wxWidgets/samples/opengl/isosurf/makefile.unx
Ron Lee 68f58d781a Updated config.{guess,sub}
Backported fixes from Robert Millan for HURD/K*BSD.
Fix broken linking of wxgtk_gl.
Fix uninitialised var warning in wxrcedit/preview.cpp
Updates for 2.4.2.5 .debs.
Update wx-config.1
Fixed makefile.unx in opengl samples to use --gl-lib
Removed #! from newevent.py


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@28560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-07-31 13:58:38 +00:00

36 lines
539 B
Plaintext

#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for isosurf example (UNIX).
PROGRAM=isosurf
CXX = $(shell wx-config --cxx)
OBJECTS = $(PROGRAM).o
# implementation
.SUFFIXES: .o .cpp
.cpp.o :
$(CXX) -c `wx-config --cxxflags` -o $@ $<
all: $(PROGRAM) isosurf.dat
$(PROGRAM): $(OBJECTS)
$(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --gl-libs`
clean:
rm -f *.o $(PROGRAM)
isosurf.dat: isosurf.dat.gz
gzip -c -d isosurf.dat.gz > isosurf.dat