chiark / gitweb /
debian/control: Include `prlimit' and `x86-model' in the metapackage.
[misc] / Makefile.am
1 ### -*-makefile-*-
2 ###
3 ### Build script for distorted-utils
4 ###
5 ### (c) 2008 Mark Wooding
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
10 ### This program is free software; you can redistribute it and/or modify
11 ### it under the terms of the GNU General Public License as published by
12 ### the Free Software Foundation; either version 2 of the License, or
13 ### (at your option) any later version.
14 ###
15 ### This program is distributed in the hope that it will be useful,
16 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ### GNU General Public License for more details.
19 ###
20 ### You should have received a copy of the GNU General Public License
21 ### along with this program; if not, write to the Free Software Foundation,
22 ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 EXTRA_DIST               =
25 CLEANFILES               =
26
27 man_MANS                 =
28 dist_man_MANS            =
29
30 ###--------------------------------------------------------------------------
31 ### Tools in C.
32
33 bin_PROGRAMS             =
34 sbin_PROGRAMS            =
35
36 AM_CFLAGS                = $(mLib_CFLAGS) $(catacomb_CFLAGS)
37
38 ## space
39 bin_PROGRAMS            += space
40 space_SOURCES            = space.c
41 dist_man_MANS           += space.1
42
43 ## cdb tools
44 if HAVE_LIBCDB
45 bin_PROGRAMS            += cdb-probe cdb-check-domain
46 cdb_probe_SOURCES        = cdb-probe.c
47 cdb_probe_LDADD          = -lcdb
48 cdb_check_domain_SOURCES = cdb-check-domain.c
49 cdb_check_domain_LDADD   = -lcdb
50 dist_man_MANS           += cdb-probe.1 cdb-check-domain.1
51 endif
52
53 ## getpass
54 bin_PROGRAMS            += getpass
55 getpass_SOURCES          = getpass.c
56 dist_man_MANS           += getpass.1
57
58 ## gorp
59 if HAVE_CATACOMB
60 bin_PROGRAMS            += gorp
61 gorp_SOURCES             = gorp.c
62 gorp_LDADD               = $(catacomb_LIBS)
63 dist_man_MANS           += gorp.1
64 endif
65
66 ## if-mtu
67 bin_PROGRAMS            += if-mtu
68 if_mtu_SOURCES           = if-mtu.c
69 dist_man_MANS           += if-mtu.1
70
71 ## locking
72 if HAVE_MLIB
73 bin_PROGRAMS            += locking
74 locking_SOURCES          = locking.c
75 locking_LDADD            = $(mLib_LIBS)
76 dist_man_MANS           += locking.1
77 endif
78
79 ## mtimeout
80 if HAVE_MLIB
81 bin_PROGRAMS            += mtimeout
82 mtimeout_SOURCES         = mtimeout.c
83 mtimeout_LDADD           = $(mLib_LIBS) $(MATH_LIBS)
84 dist_man_MANS           += mtimeout.1
85 endif
86
87 ## not
88 bin_PROGRAMS            += not
89 not_SOURCES              = not.c
90 dist_man_MANS           += not.1
91
92 ## pause
93 if HAVE_MLIB
94 bin_PROGRAMS            += pause
95 pause_SOURCES            = pause.c
96 pause_LDADD              = $(mLib_LIBS) $(MATH_LIBS)
97 dist_man_MANS           += pause.1
98 endif
99
100 ## prlimit
101 if HAVE_PRLIMIT
102 if HAVE_MLIB
103 bin_PROGRAMS            += prlimit
104 prlimit_SOURCES          = prlimit.c
105 prlimit_LDADD            = $(mLib_LIBS)
106 dist_man_MANS           += prlimit.1
107 endif
108 endif
109
110 ## sema
111 if HAVE_MLIB
112 bin_PROGRAMS            += sema
113 sema_SOURCES             = sema.c
114 sema_SOURCES            += fence.c fence.h
115 sema_SOURCES            += timemax.cc timemax.h
116 sema_LDADD               = $(mLib_LIBS)
117 sema_LINK                = $(LINK) # don't need C++ libraries here
118 dist_man_MANS           += sema.1
119 endif
120
121 ## stamp
122 if HAVE_MLIB
123 bin_PROGRAMS            += stamp
124 stamp_SOURCES            = stamp.c
125 stamp_LDADD              = $(mLib_LIBS)
126 dist_man_MANS           += stamp.1
127 endif
128
129 ## x86 model identification
130 if X86
131 if HAVE_MLIB
132 bin_PROGRAMS            += x86-model
133 x86_model_SOURCES        = x86-model.c
134 x86_model_LDADD          = $(mLib_LIBS)
135 dist_man_MANS           += x86-model.1
136 endif
137 endif
138
139 ## xtitle
140 bin_PROGRAMS            += xtitle
141 xtitle_SOURCES           = xtitle.c
142 dist_man_MANS           += xtitle.1
143
144 ###--------------------------------------------------------------------------
145 ### Tools in scripts.
146
147 bin_SCRIPTS              =
148 dist_bin_SCRIPTS         =
149 sbin_SCRIPTS             =
150 dist_sbin_SCRIPTS        =
151
152 ## Making substitutions.
153 confsubst = $(top_srcdir)/config/confsubst
154 V_SUBST = $(V_SUBST_$(V))
155 V_SUBST_ = $(V_SUBST_$(AM_DEFAULT_VERBOSITY))
156 V_SUBST_0 = @echo "  SUBST  $@";
157 SUBST = $(V_SUBST)$(confsubst)
158 SUBSTITUTIONS = \
159         PACKAGE=$(PACKAGE) VERSION=$(VERSION) \
160         PYTHON=$(PYTHON) \
161         PERL=$(PERL) \
162         TCLSH=$(TCLSH) \
163         BASH=$(BASH) \
164         logdir=$(logdir)
165
166 EXTRA_DIST              += config/confsubst
167
168 ## Shell scripts.
169 dist_bin_SCRIPTS        += buf
170 dist_man_MANS           += buf.1
171
172 dist_bin_SCRIPTS        += check-sender
173 dist_man_MANS           += check-sender.1
174
175 dist_bin_SCRIPTS        += create
176 dist_man_MANS           += create.1
177
178 bin_SCRIPTS             += hush
179 man_MANS                += hush.1
180 CLEANFILES              += hush hush.1
181 EXTRA_DIST              += hush.in hush.1.in
182
183 hush: hush.in Makefile
184         $(SUBST) $(srcdir)/hush.in >$@.new $(SUBSTITUTIONS) && \
185                 chmod +x $@.new && mv $@.new $@
186
187 hush.1: hush.1.in Makefile
188         $(SUBST) $(srcdir)/hush.1.in >$@.new $(SUBSTITUTIONS) && \
189                 mv $@.new $@
190
191 dist_bin_SCRIPTS        += sshsvc-mkauthkeys
192 dist_man_MANS           += sshsvc-mkauthkeys.1
193
194 dist_bin_SCRIPTS        += with-umask
195 dist_man_MANS           += with-umask.1
196
197 dist_bin_SCRIPTS        += z
198 dist_man_MANS           += z.1
199
200 ## bash scripts.
201 if HAVE_BASH
202
203 bin_SCRIPTS             += inplace
204 CLEANFILES              += inplace
205 EXTRA_DIST              += inplace.in
206 dist_man_MANS           += inplace.1
207
208 inplace: inplace.in Makefile
209         $(SUBST) $(srcdir)/inplace.in >$@.new $(SUBSTITUTIONS) && \
210                 chmod +x $@.new && mv $@.new $@
211
212 endif
213
214 ## Python scripts.
215 if HAVE_PYTHON
216
217 if HAVE_PYMOD_CDB
218 bin_SCRIPTS             += cdb-assign
219 dist_man_MANS           += cdb-assign.1
220 endif
221
222 CLEANFILES              += cdb-assign
223 EXTRA_DIST              += cdb-assign.in
224
225 cdb-assign: cdb-assign.in Makefile
226         $(SUBST) $(srcdir)/cdb-assign.in >$@.new $(SUBSTITUTIONS) && \
227                 chmod +x $@.new && mv $@.new $@
228
229 if HAVE_PYMOD_CDB
230 bin_SCRIPTS             += cdb-list
231 dist_man_MANS           += cdb-list.1
232 endif
233
234 CLEANFILES              += cdb-list
235 EXTRA_DIST              += cdb-list.in
236
237 cdb-list: cdb-list.in Makefile
238         $(SUBST) $(srcdir)/cdb-list.in >$@.new $(SUBSTITUTIONS) && \
239                 chmod +x $@.new && mv $@.new $@
240
241 if HAVE_PYMOD_CDB
242 bin_SCRIPTS             += cdb-map
243 dist_man_MANS           += cdb-map.1
244 endif
245
246 CLEANFILES              += cdb-map
247 EXTRA_DIST              += cdb-map.in
248
249 cdb-map: cdb-map.in Makefile
250         $(SUBST) $(srcdir)/cdb-map.in >$@.new $(SUBSTITUTIONS) && \
251                 chmod +x $@.new && mv $@.new $@
252
253 endif
254
255 ## Perl scripts.
256 if HAVE_PERL
257
258 sbin_SCRIPTS            += shadowfix
259 CLEANFILES              += shadowfix
260 EXTRA_DIST              += shadowfix.in
261
262 shadowfix: shadowfix.in Makefile
263         $(SUBST) $(srcdir)/shadowfix.in >$@.new $(SUBSTITUTIONS) && \
264                 chmod +x $@.new && mv $@.new $@
265
266 man_MANS                += shadowfix.8
267 CLEANFILES              += shadowfix.8
268
269 shadowfix.8: shadowfix.in
270         $(AM_V_GEN)pod2man --section 8 $(srcdir)/shadowfix.in >$@.new && \
271                 mv $@.new $@
272
273 dist_bin_SCRIPTS        += unfwd
274 dist_man_MANS           += unfwd.1
275
276 endif
277
278 ## Perl modules.
279 if HAVE_PERL
280 dist_perlmod_DATA        = MdwOpt.pm
281 endif
282
283 ## Tcl scripts.
284 if HAVE_TCLSH
285
286 bin_SCRIPTS             += splitconf
287 CLEANFILES              += splitconf
288 EXTRA_DIST              += splitconf.in
289 dist_man_MANS           += splitconf.1
290
291 splitconf: splitconf.in Makefile
292         $(SUBST) $(srcdir)/splitconf.in >$@.new $(SUBSTITUTIONS) && \
293                 chmod +x $@.new && mv $@.new $@
294
295 endif
296
297 ###--------------------------------------------------------------------------
298 ### Other administrivia.
299
300 dist-hook:
301         echo $(VERSION) >$(distdir)/RELEASE
302
303 EXTRA_DIST              += config/auto-version
304
305 ###--------------------------------------------------------------------------
306 ### Debian.
307
308 ## Standard files.
309 EXTRA_DIST              += debian/rules
310 EXTRA_DIST              += debian/copyright
311 EXTRA_DIST              += debian/changelog
312 EXTRA_DIST              += debian/control
313 EXTRA_DIST              += debian/compat
314 EXTRA_DIST              += debian/source/format
315
316 ## What to install where.
317 EXTRA_DIST              += debian/inst
318
319 ###----- That's all, folks --------------------------------------------------