Only produce initialization message if verbose.
[u/mdw/catacomb] / Makefile.m4
... / ...
CommitLineData
1## -*-makefile-*-
2##
3## $Id: Makefile.m4,v 1.22 1999/12/22 16:04:06 mdw Exp $
4##
5## Makefile for Catacomb
6##
7## (c) 1999 Straylight/Edgeware
8##
9
10##----- Licensing notice ----------------------------------------------------
11##
12## This file is part of Catacomb.
13##
14## Catacomb is free software; you can redistribute it and/or modify
15## it under the terms of the GNU Library General Public License as
16## published by the Free Software Foundation; either version 2 of the
17## License, or (at your option) any later version.
18##
19## Catacomb is distributed in the hope that it will be useful,
20## but WITHOUT ANY WARRANTY; without even the implied warranty of
21## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22## GNU Library General Public License for more details.
23##
24## You should have received a copy of the GNU Library General Public
25## License along with Catacomb; if not, write to the Free
26## Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27## MA 02111-1307, USA.
28
29##----- Revision history ----------------------------------------------------
30##
31## $Log: Makefile.m4,v $
32## Revision 1.22 1999/12/22 16:04:06 mdw
33## Lots of new files.
34##
35## Revision 1.21 1999/12/13 15:47:58 mdw
36## Fix a couple of minor bugs in the distribution set.
37##
38## Revision 1.19 1999/12/11 10:58:24 mdw
39## Fix bug in test rig link flags. Add Karatsuba squaring.
40##
41## Revision 1.18 1999/12/10 23:30:01 mdw
42## Lots of new files.
43##
44## Revision 1.17 1999/11/25 11:38:31 mdw
45## Support for conversions between MPs and C integers.
46##
47## Revision 1.16 1999/11/22 20:51:33 mdw
48## Add yet more source files.
49##
50## Revision 1.15 1999/11/22 14:08:30 mdw
51## Improve dependencies for test programs.
52##
53## Revision 1.14 1999/11/22 00:17:09 mdw
54## Create object files for test programs so that rebuilding doesn't take so
55## long.
56##
57## Revision 1.12 1999/11/20 22:36:26 mdw
58## Improve dependencies. Move mpx testing into mpx.c.
59##
60## Revision 1.11 1999/11/20 22:24:53 mdw
61## Add Diffie-Hellman support.
62##
63## Revision 1.10 1999/11/19 19:28:24 mdw
64## Add DSA files and tests.
65##
66## Revision 1.9 1999/11/17 18:05:35 mdw
67## Many new files and test cases for multiprecision arithmetic.
68##
69## Revision 1.8 1999/11/13 01:56:07 mdw
70## Include multiprecision maths stuff.
71##
72## Revision 1.7 1999/11/11 19:01:02 mdw
73## Use `libtool' to generate a shared library.
74##
75## Revision 1.6 1999/11/11 17:47:34 mdw
76## Updates for new configuration system, and `mptypes' generator.
77##
78## Revision 1.5 1999/11/11 00:59:17 mdw
79## Minor reformatting.
80##
81## Revision 1.4 1999/10/24 10:20:36 mdw
82## Modify for standalone distribution. The library's getting far too large
83## to be sensibly embedded in other programs.
84##
85## Revision 1.3 1999/10/24 10:04:26 mdw
86## Install headers in the right directory.
87##
88## Revision 1.2 1999/10/23 12:55:35 mdw
89## The `CVS' directory can't be hardlinked. Don't worry about this
90## overmuch.
91##
92## Revision 1.1 1999/09/03 08:41:11 mdw
93## Initial import.
94##
95
96AUTOMAKE_OPTIONS = foreign
97
98archincludedir = $(libdir)/catacomb/include
99
100## --- List handling macros ---
101##
102## List handling is nice, usually. Unfortunately, I based this design on
103## TeX list macros rather than anything sensible...
104
105define(`_', `define(`_item', $1)define(`_item_2', $2)emit`'')
106define(`adorn', `pushdef(`emit', `$1`'_item`'$3')$2`'popdef(`emit')')
107define(`join',
108`pushdef(`emit', `adorn(``_(''_item`$2', `$3', ``)'')`'')$1`'popdef(`emit')')
109define(`addsuffix', `adorn(`', `$1', `$2')')
110define(`lit', `adorn(`', `$1', `')')
111define(`nl', `
112')
113
114define(`allwithsuffix',
115`addsuffix(`$1', `$3') addsuffix(`$2', `$3') dnl
116addsuffix(join(`$1', `-', `$2'), `$3')')
117
118## --- Autogenerated source files ---
119
120define(`ciphers', `_(des) _(des3) _(blowfish) _(idea) _(rc5)')
121define(`cipher_modes', `_(ecb) _(cbc) _(cfb) _(ofb)')
122
123define(`hashes', `_(md5) _(md4) _(rmd160) _(sha)')
124define(`hash_modes', `_(hmac)')
125
126MODES = \
127 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.c') \
128 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.h') \
129 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.c') \
130 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.h')
131
132$(MODES): $(srcdir)/genmodes
133 cd $(srcdir); ./genmodes "lit(`ciphers')" "lit(`cipher_modes')"
134 cd $(srcdir); ./genmodes "lit(`hashes')" "lit(`hash_modes')"
135
136des_sp.h: des-mktab
137 ./des-mktab >des_sp.h
138
139primetab.c primetab.h: genprimes
140 ./genprimes -h primetab.h -c primetab.c -m 255 -t "unsigned char" -i primetab
141
142archinclude_HEADERS = mptypes.h
143
144mptypes.h: mptypes
145 ./mptypes >mptypes.h
146
147BUILT_SOURCES = \
148 getdate.c \
149 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
150 addsuffix(join(`ciphers', `-', `cipher_modes'), `.h') \
151 addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
152 addsuffix(join(`hashes', `-', `hash_modes'), `.h')
153
154## --- Building the main library ---
155
156lib_LTLIBRARIES = libcatacomb.la
157
158libcatacomb_la_LDFLAGS = -version-info 1:0:0
159## Middle number is the patchlevel. Final number is the minor version. The
160## difference between the first and last numbers is major version.
161
162define(`emit', `$1.h ')
163pkginclude_HEADERS = \
164 paranoia.h \
165 blkc.h hash.h \
166 gcipher.h ghash.h gmac.h grand.h \
167 ghash-def.h \
168 rc4.h \
169 rand.h noise.h \
170 key.h passphrase.h pixie.h lmem.h \
171 lcrand.h fibrand.h \
172 mpx.h mpw.h mpscan.h mparena.h mp.h mptext.h mpint.h \
173 mpbarrett.h mpmont.h mpcrt.h \
174 mprand.h \
175 primetab.h pfilt.h primorial.h rabin.h \
176 pgen.h prim.h strongprime.h \
177 bbs.h rsa.h dsarand.h dsa.h \
178 allwithsuffix(`ciphers', `cipher_modes', `.h') \
179 allwithsuffix(`hashes', `hash_modes', `.h') \
180 addsuffix(`cipher_modes', `-def.h') \
181 addsuffix(`hash_modes', `-def.h')
182
183define(`emit', `$1.c ')
184libcatacomb_la_SOURCES = \
185 grand.c \
186 des-base.c des-base.h des_sp.h bf_ikey.h daftstory.h \
187 rc4.c \
188 rand.c noise.c \
189 key-misc.c key-file.c key-data.c key-attr.c key-flags.c \
190 key-io.c key-pass.c key-moan.c \
191 passphrase.c pixie-client.c pixie-common.c lmem.c \
192 lcrand.c fibrand.c \
193 mpx.c mpx-kmul.c mpx-ksqr.c mpscan.c mparena.c \
194 mp-misc.c mp-mem.c mp-const.c mp-io.c mp-arith.c mp-test.c \
195 mp-gcd.c mp-jacobi.c \
196 mpint.c \
197 mptext.c mptext-file.c mptext-string.c mptext-dstr.c \
198 mpbarrett.c mpmont.c mpmont-mexp.c \
199 mpcrt.c \
200 mprand.c \
201 primetab.c pfilt.c rabin.c primorial.c \
202 pgen.c pgen-stdev.c pgen-safe.c prim.c strongprime.c \
203 bbs-rand.c bbs-gen.c bbs-jump.c \
204 rsa-decrypt.c rsa-gen.c rsa-recover.c \
205 dsarand.c dsa-sign.c dsa-verify.c dsa-gen.c \
206 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
207 addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
208 addsuffix(`ciphers', `.c') addsuffix(`hashes', `.c')
209
210des-base.lo: des_sp.h
211mpx.lo: mptypes.h
212
213## --- Utility programs ---
214
215bin_PROGRAMS = key pixie rspit
216bin_SCRIPTS = catacomb-config xpixie
217noinst_PROGRAMS = des-mktab genprimes mptypes
218LDADD = libcatacomb.la
219
220key_SOURCES = keyutil.c getdate.y getdate.h
221
222pixie_SOURCES = pixie.c pixie-common.c lmem.c
223pixie_LDADD =
224
225rspit_SOURCES = rspit.c
226
227des_mktab_SOURCES = des-mktab.c
228des_mktab_LDADD =
229
230genprimes_SOURCES = genprimes.c
231genprimes_LDADD =
232
233mptypes_SOURCES = mptypes.c
234mptypes_LDADD =
235
236## --- Install the pixie setuid-root if we can ---
237
238changequote(<, >)
239install-exec-hook:
240 @pixie="$(bindir)/`echo pixie|sed $(transform)`"; \
241 if chown root $$pixie && chmod 4755 $$pixie; then \
242 echo "chown root $$pixie"; \
243 echo "chmod 4755 $$pixie"; \
244 else \
245 echo "***"; \
246 echo "*** You should probably install $$pixie setuid-root."; \
247 echo "***"; \
248 fi
249changequote(`, ')
250
251## --- Documentation ---
252
253man_MANS = key.1 keyring.5
254
255## --- Other handy definitions ---
256
257EXTRA_DIST = \
258 Makefile.m4 genmodes $(man_MANS) xpixie \
259 README.cipher README.hash README.random README.mp
260
261dist-hook:
262 @ln getdate.c $(distdir) || ln $(srcdir)/getdate.c $(distdir) || true
263 @mkdir $(distdir)/tests
264 @ln $(srcdir)/tests/* $(distdir)/tests || true
265 @rm -f $(distdir)/tests/*~
266
267## --- Testing ---
268
269define(`testprogs', `')
270
271define(`CTESTRIG',
272`define(`testprogs', testprogs \
273 $1.t)dnl
274$1.to: $1.c
275 $(COMPILE) -c -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $(srcdir)/$1.c -o $1.to
276$1.t: $1.to $1.o libcatacomb.la
277 $(CC) $(CFLAGS) $(LDFLAGS) $1.to .libs/libcatacomb.a $(LIBS) -o $1.t')
278
279CTESTRIG(rc4)
280adorn(`nl`'CTESTRIG(', `ciphers', `)')
281adorn(`nl`'CTESTRIG(', `hashes', `)')
282adorn(`nl`'CTESTRIG(', join(`ciphers', `-', `cipher_modes'), `)')
283adorn(`nl`'CTESTRIG(', join(`hashes', `-', `hash_modes'), `)')
284CTESTRIG(lcrand)
285CTESTRIG(mpx)
286CTESTRIG(mpx-kmul)
287CTESTRIG(mpx-ksqr)
288CTESTRIG(mp-arith)
289CTESTRIG(mp-gcd)
290CTESTRIG(mp-jacobi)
291CTESTRIG(mptext)
292CTESTRIG(mpint)
293CTESTRIG(mpbarrett)
294CTESTRIG(mpmont)
295CTESTRIG(mpmont-mexp)
296CTESTRIG(mpcrt)
297CTESTRIG(pgen)
298CTESTRIG(dsa-gen)
299CTESTRIG(dsa-sign)
300CTESTRIG(dsa-verify)
301CTESTRIG(bbs-rand)
302CTESTRIG(bbs-jump)
303
304TESTS = testprogs
305
306CLEANFILES = *.t *.to mptypes.h des_sp.h primetab.c primetab.h
307
308## --- Makefile building (haha!) ---
309
310$(srcdir)/Makefile.am: $(srcdir)/Makefile.m4
311 m4 $(srcdir)/Makefile.m4 >$(srcdir)/Makefile.am
312
313MAINTAINERCLEANFILES = \
314 $(srcdir)/Makefile.am \
315 $(srcdir)/getdate.c getdate.c \
316 $(MODES)
317
318##----- That's all, folks ---------------------------------------------------