Initial release of Maemo 5 port of gnuplot
[gnuplot] / m4 / Makefile.am
1 ## Process this file with automake to produce Makefile.in -*-Makefile-*-
2 AUTOMAKE_OPTIONS = foreign 1.2h
3
4 ##m4-files-begin
5 EXTRA_DIST = README Makefile.am.in alpha.m4 apple.m4 beos.m4 msdos.m4 \
6 next.m4 pkg.m4 
7 ##m4-files-end
8
9 Makefile.am: Makefile.am.in
10         rm -f $@ $@t
11         sed -n '1,/^##m4-files-begin/p' Makefile.am.in > $@t
12         echo EXTRA_DIST = README Makefile.am.in *.m4 | fmt | \
13           (tr '\012' @; echo ) \
14           |sed 's/@$$/%/;s/@/ \\@/g' |tr @% '\012 ' \
15           >> $@t
16         sed -n '/^##m4-files-end/,$$p' Makefile.am.in >> $@t
17         chmod a-w $@t
18         mv $@t $@
19