confsubst: Rename to confsubst.in and substitute.
[cfd] / Makefile.am
1 ### -*-makefile-*-
2 ###
3 ### Building the distribution
4 ###
5 ### (c) 1997 Mark Wooding
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
10 ### This file is part of the Common Files Distribution (`common')
11 ###
12 ### `Common' is free software; you can redistribute it and/or modify
13 ### it under the terms of the GNU General Public License as published by
14 ### the Free Software Foundation; either version 2 of the License, or
15 ### (at your option) any later version.
16 ###
17 ### `Common' is distributed in the hope that it will be useful,
18 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ### GNU General Public License for more details.
21 ###
22 ### You should have received a copy of the GNU General Public License
23 ### along with `common'; if not, write to the Free Software Foundation,
24 ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 bin_SCRIPTS =
27 pkgdata_SCRIPTS =
28 pkgdata_DATA =
29
30 EXTRA_DIST =
31 CLEANFILES =
32
33 ###--------------------------------------------------------------------------
34 ### Handy variables.
35
36 confsubst = $(srcdir)/confsubst.in
37 mkdir_p = $(srcdir)/config/install-sh -d
38
39 ###--------------------------------------------------------------------------
40 ### Main scripts.
41
42 ## mklinks
43 bin_SCRIPTS += mklinks
44 CLEANFILES += mklinks
45 EXTRA_DIST += mklinks.in
46
47 mklinks: mklinks.in Makefile
48 $(confsubst) $(srcdir)/mklinks.in >$@.new \
49 pkgdatadir=$(pkgdatadir) VERSION=$(VERSION)
50 chmod +x $@.new
51 mv $@.new $@
52
53 ## findlinks
54 bin_SCRIPTS += findlinks
55 CLEANFILES += findlinks
56 EXTRA_DIST += findlinks.in
57
58 findlinks: findlinks.in Makefile
59 $(confsubst) $(srcdir)/findlinks.in >$@.new \
60 pkgdatadir=$(pkgdatadir) VERSION=$(VERSION)
61 chmod +x $@.new
62 mv $@.new $@
63
64 ## mdw-setup
65 bin_SCRIPTS += mdw-setup
66 EXTRA_DIST += mdw-setup
67
68 ###--------------------------------------------------------------------------
69 ### Files to install.
70
71 ## Licences.
72 pkgdata_DATA += COPYING COPYING.LIB
73 pkgdata_DATA += gpl.tex lgpl.tex gpl.texi lgpl.texi
74
75 ## Documentation.
76 pkgdata_DATA += INSTALL
77 pkgdata_DATA += texinice.tex
78
79 ## Useful code.
80 pkgdata_DATA += mdwopt.c mdwopt.h
81 pkgdata_DATA += getdate.y getdate.h
82
83 ## Scripts.
84 pkgdata_SCRIPTS += install-ac
85 pkgdata_SCRIPTS += maninst
86
87 ## confsubst
88 pkgdata_SCRIPTS += confsubst
89 CLEANFILES += confsubst
90 EXTRA_DIST += confsubst.in
91
92 confsubst: confsubst.in Makefile
93 $(confsubst) $(srcdir)/confsubst.in >$@.new \
94 VERSION=$(VERSION)
95 chmod +x $@.new
96 mv $@.new $@
97
98 ## Testsuites.
99 pkgdata_DATA += autotest.am
100 pkgdata_DATA += testsuite.at
101
102 EXTRA_DIST += $(pkgdata_DATA)
103 EXTRA_DIST += $(pkgdata_SCRIPTS)
104
105 ## Autoconf snippets.
106 EXTRA_DIST += aclocal.glob
107
108 install-data-hook::
109 $(mkdir_p) $(DESTDIR)$(aclocaldir)
110 $(srcdir)/install-ac install \
111 $(srcdir)/aclocal.glob $(DESTDIR)$(aclocaldir)
112
113 uninstall-hook::
114 $(srcdir)/install-ac rm \
115 $(srcdir)/aclocal.glob $(DESTDIR)$(aclocaldir)
116
117 ###--------------------------------------------------------------------------
118 ### Documentation.
119
120 info_TEXINFOS = common.texi
121
122 ###--------------------------------------------------------------------------
123 ### Other special tweaks.
124
125 ## Make `make distcheck' work.
126 DISTCHECK_CONFIGURE_FLAGS = \
127 --with-aclocaldir='$${prefix}/share/aclocal'
128
129 ## Distribute the release number.
130 dist-hook::
131 echo $(VERSION) >$(distdir)/RELEASE
132
133 ###--------------------------------------------------------------------------
134 ### Debian.
135
136 EXTRA_DIST += debian/control
137 EXTRA_DIST += debian/copyright
138 EXTRA_DIST += debian/rules
139 EXTRA_DIST += debian/changelog
140
141 ###----- That's all, folks --------------------------------------------------