From f9941f4c2779b11f653a4eca6b6f3c8ce42a857f Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 24 Jan 1999 23:58:54 +0000 Subject: [PATCH] Added wxMotif wxGLCanvas makefiles git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/glcanvas/samples/cube/makefile.unx | 23 ++++++++++++++++++ utils/glcanvas/samples/isosurf/makefile.unx | 27 +++++++++++++++++++++ utils/glcanvas/samples/penguin/makefile.unx | 21 ++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 utils/glcanvas/samples/cube/makefile.unx create mode 100644 utils/glcanvas/samples/isosurf/makefile.unx create mode 100644 utils/glcanvas/samples/penguin/makefile.unx diff --git a/utils/glcanvas/samples/cube/makefile.unx b/utils/glcanvas/samples/cube/makefile.unx new file mode 100644 index 0000000000..590b54ddd5 --- /dev/null +++ b/utils/glcanvas/samples/cube/makefile.unx @@ -0,0 +1,23 @@ +# +# File: makefile.unx +# Author: Julian Smart +# Created: 1998 +# Updated: +# Copyright: (c) 1998 Julian Smart +# +# "%W% %G%" +# +# Makefile for cube example (UNIX). + +PROGRAM=cube + +OPENGLHOME=/home/jacs/mesa/Mesa-2.3 + +EXTRACPPFLAGS=-I$(OPENGLHOME)/include -I../../motif +EXTRALDFLAGS=-L$(OPENGLHOME)/lib +EXTRALDLIBS=-lglcanvas_motif -lMesaGL -lMesaGLU + +OBJECTS=$(PROGRAM).o + +include ../../../../src/makeprog.env + diff --git a/utils/glcanvas/samples/isosurf/makefile.unx b/utils/glcanvas/samples/isosurf/makefile.unx new file mode 100644 index 0000000000..d7b4d3d92b --- /dev/null +++ b/utils/glcanvas/samples/isosurf/makefile.unx @@ -0,0 +1,27 @@ +# +# File: makefile.unx +# Author: Julian Smart +# Created: 1998 +# Updated: +# Copyright: (c) 1998 Julian Smart +# +# "%W% %G%" +# +# Makefile for isosurf example (UNIX). + +PROGRAM=isosurf + +OPENGLHOME=/home/jacs/mesa/Mesa-2.3 + +EXTRACPPFLAGS=-I$(OPENGLHOME)/include -I../../motif +EXTRALDFLAGS=-L$(OPENGLHOME)/lib +EXTRALDLIBS=-lglcanvas_motif -lMesaGL -lMesaGLU + +OBJECTS=$(PROGRAM).o +EXTRATARGETS=isosurf.dat + +include ../../../../src/makeprog.env + +isosurf.dat: isosurf.dat.gz + gzip -c -d isosurf.dat.gz > isosurf.dat + diff --git a/utils/glcanvas/samples/penguin/makefile.unx b/utils/glcanvas/samples/penguin/makefile.unx new file mode 100644 index 0000000000..2625c45bc9 --- /dev/null +++ b/utils/glcanvas/samples/penguin/makefile.unx @@ -0,0 +1,21 @@ +# +# File: makefile.unx +# Author: Julian Smart +# Created: 1998 +# Updated: +# Copyright: (c) 1998 Julian Smart +# +# Makefile for penguin example (UNIX). + +PROGRAM=penguin + +OPENGLHOME=/home/jacs/mesa/Mesa-2.3 + +EXTRACPPFLAGS=-I$(OPENGLHOME)/include -I../../motif +EXTRALDFLAGS=-L$(OPENGLHOME)/lib +EXTRALDLIBS=-lglcanvas_motif -lMesaGL -lMesaGLU + +OBJECTS=$(PROGRAM).o trackball.o lw.o + +include ../../../../src/makeprog.env + -- 2.45.2