X-Git-Url: http://git.maemo.org/git/?p=gnuplot;a=blobdiff_plain;f=term%2FMakefile.am;fp=term%2FMakefile.am;h=20d2ac7ff830f14f877a8b67ca1ebf233a5ea196;hp=0000000000000000000000000000000000000000;hb=39ec1247a71f61152a4a7f502a30f06a3896c5da;hpb=06be459be4f5f6a7c6ff878e84f355fb2575caa8 diff --git a/term/Makefile.am b/term/Makefile.am new file mode 100644 index 0000000..20d2ac7 --- /dev/null +++ b/term/Makefile.am @@ -0,0 +1,38 @@ +## Process this file with automake to produce Makefile.in -*-Makefile-*- +AUTOMAKE_OPTIONS = foreign 1.2h + +EXTRA_DIST = README Makefile.am.in compact.c driver.h impcodes.h \ +object.h post.h $(CORETERM) PostScript + +# List of terminal drivers; must be created +# prior to running automake +##trm-files-begin +CORETERM = aed.trm ai.trm amiga.trm apollo.trm aquaterm.trm atariaes.trm \ +atarivdi.trm be.trm cgi.trm cgm.trm corel.trm debug.trm djsvga.trm \ +dumb.trm dxf.trm dxy.trm eepic.trm emf.trm emxvga.trm epson.trm \ +estimate.trm excl.trm fg.trm fig.trm gd.trm ggi.trm gnugraph.trm gpic.trm \ +gpr.trm grass.trm hp2648.trm hp26.trm hp500c.trm hpgl.trm hpljii.trm \ +hppj.trm imagen.trm iris4d.trm kyo.trm latex.trm linux.trm mac.trm \ +metafont.trm metapost.trm mgr.trm mif.trm multitos.trm next.trm \ +openstep.trm pbm.trm pc.trm pdf.trm pm.trm post.trm pslatex.trm \ +pstricks.trm qms.trm regis.trm rgip.trm sun.trm svg.trm t410x.trm tek.trm \ +texdraw.trm tgif.trm tkcanvas.trm tpic.trm unixpc.trm unixplot.trm \ +v384.trm vgagl.trm vws.trm win.trm wxt.trm x11.trm xlib.trm +##trm-files-end + +postscriptdir = $(pkgdatadir)/$(VERSION_MAJOR)/PostScript +postscript_DATA = PostScript/8859-15.ps PostScript/8859-1.ps\ + PostScript/8859-2.ps PostScript/cp1250.ps PostScript/cp437.ps\ + PostScript/cp850.ps PostScript/cp852.ps PostScript/koi8r.ps PostScript/koi8u.ps\ + PostScript/prologue.ps + +Makefile.am: Makefile.am.in + rm -f $@ $@t + sed -n '1,/^##trm-files-begin/p' Makefile.am.in > $@t + echo CORETERM = *.trm | fmt | (tr '\012' @; echo) \ + |sed 's/@$$/%/;s/@/ \\@/g' | tr @% '\012 ' \ + >> $@t + sed -n '/^##trm-files-end/,$$p' Makefile.am.in >> $@t + chmod a-w $@t + mv $@t $@ +