Update of /cvsroot/plplot/plplot/examples/c
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2510/examples/c
Modified Files:
Makefile.am
Log Message:
Distribute plplotcanvas data regardless, but install it only if gcw is
enabled.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/plplot/plplot/examples/c/Makefile.am,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- Makefile.am 27 Apr 2005 06:43:50 -0000 1.25
+++ Makefile.am 3 May 2005 17:48:22 -0000 1.26
@@ -50,13 +50,19 @@
x23c.c \
x24c.c
+plplotcanvas_data = \
+ plplotcanvas_demo.c \
+ plplotcanvas_animation.c \
+ README.plplotcanvas
+
examples_c_DATA = \
Makefile.examples
+if enable_gcw
+examples_c_DATA += $(plplotcanvas_data)
+endif
+
dist_examples_c_DATA = \
- plplotcanvas_demo.c \
- plplotcanvas_animation.c \
- README.plplotcanvas \
lena.pgm \
$(sources)
@@ -92,4 +98,4 @@
LDADD = $(libplplot)
-EXTRA_DIST = Makefile.examples.in
+EXTRA_DIST = Makefile.examples.in $(plplotcanvas_data)
|