Initial release of Maemo 5 port of gnuplot
[gnuplot] / demo / Makefile.am.in
diff --git a/demo/Makefile.am.in b/demo/Makefile.am.in
new file mode 100644 (file)
index 0000000..16961cf
--- /dev/null
@@ -0,0 +1,75 @@
+## Process this file with automake to produce Makefile.in -*-Makefile-*-
+AUTOMAKE_OPTIONS = foreign 1.2h
+
+CLEANFILES = binary1 binary2 binary3 defaults.ini equipo2.tmp field2xy.tmp \
+fit.log soundfit.par temp.set fontfile.ps fontfile_latex.ps epslatex-inc.eps \
+epslatex-inc.pdf epslatex.aux epslatex.dvi epslatex.log epslatex.pdf \
+epslatex.ps epslatex.tex random.tmp stringvar.tmp
+
+BINARY_FILES = binary1 binary2 binary3
+
+DEMO = all.dem
+
+GNUPLOT = gnuplot
+
+all: $(BINARY_FILES)
+
+$(BINARY_FILES): ../src/bf_test
+       @echo Creating binary data files
+       @../src/bf_test
+
+check-local: check-noninteractive
+
+check-interactive: $(BINARY_FILES)
+       @if test -z "$(GNUTERM)" ; then \
+         ( bdir=`pwd` ; PATH=$$bdir/../src:$$PATH \
+           GNUPLOT_DRIVER_DIR=$$bdir/../src \
+           GNUPLOT_LIB=$(srcdir) $(GNUPLOT) $(DEMO) ); \
+       else \
+         ( bdir=`pwd` ; PATH=$$bdir/../src:$$PATH \
+           GNUPLOT_DRIVER_DIR=$$bdir/../src \
+           GNUTERM=$(GNUTERM) \
+           GNUPLOT_LIB=$(srcdir) $(GNUPLOT) $(DEMO) ); \
+       fi
+
+check-noninteractive: $(BINARY_FILES)
+       @if test -z "$(GNUTERM)" ; then \
+         ( bdir=`pwd` ; PATH=$$bdir/../src:$$PATH \
+           GNUPLOT_DRIVER_DIR=$$bdir/../src \
+           GNUPLOT_LIB=$(srcdir) $(GNUPLOT) $(DEMO) </dev/null ); \
+       else \
+         ( bdir=`pwd` ; PATH=$$bdir/../src:$$PATH\
+           GNUPLOT_DRIVER_DIR=$$bdir/../src \
+           GNUTERM=$(GNUTERM) \
+           GNUPLOT_LIB=$(srcdir) $(GNUPLOT) $(DEMO) </dev/null ); \
+       fi
+
+epslatex:
+       @if test -z "$(GNUTERM)" ; then \
+         ( bdir=`pwd` ; PATH=$$bdir/../src:$$PATH \
+           GNUPLOT_DRIVER_DIR=$$bdir/../src \
+           GNUPLOT_LIB=$(srcdir) $(GNUPLOT) epslatex.dem ); \
+       else \
+         ( bdir=`pwd` ; PATH=$$bdir/../src:$$PATH \
+           GNUPLOT_DRIVER_DIR=$$bdir/../src \
+           GNUTERM=$(GNUTERM) \
+           GNUPLOT_LIB=$(srcdir) $(GNUPLOT) epslatex.dem ); \
+       fi
+       latex epslatex
+       dvips epslatex
+
+##m4-files-begin
+##m4-files-end
+
+Makefile.am: Makefile.am.in
+       rm -f $@ $@t
+       sed -n '1,/^##m4-files-begin/p' Makefile.am.in > $@t
+       echo EXTRA_DIST = Makefile.am.in *.bin *.cfg *.cor *.dat *.dem *.edf \
+         *.fnc *.inc nearmap.csv *.pdb *.r3d *.rgb sound.par sound2.par \
+         start.par *.rot html | fmt | \
+         (tr '\012' @; echo) | sed 's/@$$/%/;s/@/ \\@/g' | tr @% '\012 ' \
+         >> $@t
+       sed -n '/^##m4-files-end/,$$p' $< >> $@t
+       chmod a-w $@t
+       mv $@t $@
+