Update of /cvsroot/plib/plib/examples/src/ssg/tux
In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/ssg/tux
Modified Files:
Makefile.am
Log Message:
Support for building only certain examples
Index: Makefile.am
===================================================================
RCS file: /cvsroot/plib/plib/examples/src/ssg/tux/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Makefile.am 7 Jul 2002 18:07:14 -0000 1.7
+++ Makefile.am 1 Sep 2002 05:22:25 -0000 1.8
@@ -1,3 +1,5 @@
+if BUILD_SSG
+
noinst_PROGRAMS = tux_example WavingFlagDemo
tux_example_SOURCES = tux_example.cxx
@@ -5,6 +7,8 @@
tux_example_LDADD = -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS)
WavingFlagDemo_LDADD = -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS)
+
+endif
EXTRA_DIST = tux_example.dsp WavingFlag.dsp
|