29080c22feb172f3f419cf7dbacf736128ea0733
[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
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 pkgdata_SCRIPTS += confsubst
87
88 ## Testsuites.
89 pkgdata_DATA += autotest.am
90 pkgdata_DATA += testsuite.at
91
92 EXTRA_DIST += $(pkgdata_DATA)
93 EXTRA_DIST += $(pkgdata_SCRIPTS)
94
95 ## Autoconf snippets.
96 EXTRA_DIST += aclocal.glob
97
98 install-data-hook::
99 $(mkdir_p) $(DESTDIR)$(aclocaldir)
100 $(srcdir)/install-ac install \
101 $(srcdir)/aclocal.glob $(DESTDIR)$(aclocaldir)
102
103 uninstall-hook::
104 $(srcdir)/install-ac rm \
105 $(srcdir)/aclocal.glob $(DESTDIR)$(aclocaldir)
106
107 ###--------------------------------------------------------------------------
108 ### Documentation.
109
110 info_TEXINFOS = common.texi
111
112 ###--------------------------------------------------------------------------
113 ### Other special tweaks.
114
115 ## Make `make distcheck' work.
116 DISTCHECK_CONFIGURE_FLAGS = \
117 --with-aclocaldir='$${prefix}/share/aclocal'
118
119 ## Distribute the release number.
120 dist-hook::
121 echo $(VERSION) >$(distdir)/RELEASE
122
123 ###--------------------------------------------------------------------------
124 ### Debian.
125
126 EXTRA_DIST += debian/control
127 EXTRA_DIST += debian/copyright
128 EXTRA_DIST += debian/rules
129 EXTRA_DIST += debian/changelog
130
131 ###----- That's all, folks --------------------------------------------------