(mkphrase): New program for generating random passphrases with measured
[u/mdw/catacomb] / Makefile.m4
1 ## -*-makefile-*-
2 ##
3 ## $Id: Makefile.m4,v 1.40 2000/08/06 10:50:55 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.40 2000/08/06 10:50:55 mdw
33 ## (mkphrase): New program for generating random passphrases with measured
34 ## strength.
35 ##
36 ## Revision 1.39 2000/07/29 21:55:32 mdw
37 ## Make sure the pixie is installed setuid-root (workaround for an Automake
38 ## bug). Install new manpages.
39 ##
40 ## Revision 1.38 2000/07/29 10:54:55 mdw
41 ## Further fixing to support building using normal `make' again. ;-) I
42 ## think we're there now.
43 ##
44 ## Revision 1.37 2000/07/29 10:02:36 mdw
45 ## Lots of fixing to support `make -j' building.
46 ##
47 ## Revision 1.36 2000/07/20 20:13:38 mdw
48 ## Added Bellare and Rogaway's PSS encoding for RSA signatures.
49 ##
50 ## Revision 1.35 2000/07/16 20:00:46 mdw
51 ## Bug fixes to distribution.
52 ##
53 ## Revision 1.34 2000/07/15 20:55:32 mdw
54 ## More hashes and ciphers. An extra tool.
55 ##
56 ## Revision 1.33 2000/07/09 21:34:15 mdw
57 ## New hash functions and other stuff.
58 ##
59 ## Revision 1.32 2000/07/01 11:27:32 mdw
60 ## Name changes and new files.
61 ##
62 ## Revision 1.31 2000/06/25 13:02:07 mdw
63 ## Fix cleaning of generated files.
64 ##
65 ## Revision 1.30 2000/06/22 19:10:33 mdw
66 ## Fix Makefile to test mp-sqrt.c.
67 ##
68 ## Revision 1.29 2000/06/22 19:04:19 mdw
69 ## More new functions to be added.
70 ##
71 ## Revision 1.28 2000/06/18 23:31:18 mdw
72 ## Rearrange build order to ensure that `mptypes.h' exists by the time it's
73 ## needed.
74 ##
75 ## Revision 1.27 2000/06/17 13:28:50 mdw
76 ## Minor tidying and fixing.
77 ##
78 ## Revision 1.26 2000/06/17 10:33:43 mdw
79 ## Lots of new ciphers and other files.
80 ##
81 ## Revision 1.25 2000/02/12 18:55:40 mdw
82 ## Make it all compile properly.
83 ##
84 ## Revision 1.24 2000/02/12 18:22:26 mdw
85 ## Missed a file. Whoops.
86 ##
87 ## Revision 1.23 2000/02/12 18:21:01 mdw
88 ## Overhaul of key management (again).
89 ##
90 ## Revision 1.22 1999/12/22 16:04:06 mdw
91 ## Lots of new files.
92 ##
93 ## Revision 1.21 1999/12/13 15:47:58 mdw
94 ## Fix a couple of minor bugs in the distribution set.
95 ##
96 ## Revision 1.19 1999/12/11 10:58:24 mdw
97 ## Fix bug in test rig link flags. Add Karatsuba squaring.
98 ##
99 ## Revision 1.18 1999/12/10 23:30:01 mdw
100 ## Lots of new files.
101 ##
102 ## Revision 1.17 1999/11/25 11:38:31 mdw
103 ## Support for conversions between MPs and C integers.
104 ##
105 ## Revision 1.16 1999/11/22 20:51:33 mdw
106 ## Add yet more source files.
107 ##
108 ## Revision 1.15 1999/11/22 14:08:30 mdw
109 ## Improve dependencies for test programs.
110 ##
111 ## Revision 1.14 1999/11/22 00:17:09 mdw
112 ## Create object files for test programs so that rebuilding doesn't take so
113 ## long.
114 ##
115 ## Revision 1.12 1999/11/20 22:36:26 mdw
116 ## Improve dependencies. Move mpx testing into mpx.c.
117 ##
118 ## Revision 1.11 1999/11/20 22:24:53 mdw
119 ## Add Diffie-Hellman support.
120 ##
121 ## Revision 1.10 1999/11/19 19:28:24 mdw
122 ## Add DSA files and tests.
123 ##
124 ## Revision 1.9 1999/11/17 18:05:35 mdw
125 ## Many new files and test cases for multiprecision arithmetic.
126 ##
127 ## Revision 1.8 1999/11/13 01:56:07 mdw
128 ## Include multiprecision maths stuff.
129 ##
130 ## Revision 1.7 1999/11/11 19:01:02 mdw
131 ## Use `libtool' to generate a shared library.
132 ##
133 ## Revision 1.6 1999/11/11 17:47:34 mdw
134 ## Updates for new configuration system, and `mptypes' generator.
135 ##
136 ## Revision 1.5 1999/11/11 00:59:17 mdw
137 ## Minor reformatting.
138 ##
139 ## Revision 1.4 1999/10/24 10:20:36 mdw
140 ## Modify for standalone distribution. The library's getting far too large
141 ## to be sensibly embedded in other programs.
142 ##
143 ## Revision 1.3 1999/10/24 10:04:26 mdw
144 ## Install headers in the right directory.
145 ##
146 ## Revision 1.2 1999/10/23 12:55:35 mdw
147 ## The `CVS' directory can't be hardlinked. Don't worry about this
148 ## overmuch.
149 ##
150 ## Revision 1.1 1999/09/03 08:41:11 mdw
151 ## Initial import.
152 ##
153
154 AUTOMAKE_OPTIONS = foreign
155
156 SUBDIRS = tests
157
158 archincludedir = $(libdir)/catacomb/include
159
160 ## --- List handling macros ---
161 ##
162 ## List handling is nice, usually. Unfortunately, I based this design on
163 ## TeX list macros rather than anything sensible...
164
165 define(`_', `define(`_item', $1)define(`_item_2', $2)emit`'')
166 define(`adorn', `pushdef(`emit', `$1`'_item`'$3')$2`'popdef(`emit')')
167 define(`join',
168 `pushdef(`emit', `adorn(``_(''_item`$2', `$3', ``)'')`'')$1`'popdef(`emit')')
169 define(`addsuffix', `adorn(`', `$1', `$2')')
170 define(`lit', `adorn(`', `$1', `')')
171 define(`nl', `
172 ')
173
174 define(`allwithsuffix',
175 `addsuffix(`$1', `$3') addsuffix(`$2', `$3') dnl
176 addsuffix(join(`$1', `-', `$2'), `$3')')
177
178 ## --- Autogenerated source files ---
179
180 define(`ciphers', `dnl
181 _(des) _(des3) dnl
182 _(idea) dnl
183 _(blowfish) _(twofish) dnl
184 _(tea) _(xtea) dnl
185 _(rc2) _(rc5) dnl
186 _(skipjack) dnl
187 _(cast128) _(cast256) dnl
188 _(square) _(rijndael) dnl
189 _(serpent)')
190 define(`cipher_modes', `_(ecb) _(cbc) _(cfb) _(ofb) _(counter)')
191
192 define(`hashes', `dnl
193 _(md5) _(md4) _(sha) _(tiger) dnl
194 _(rmd128) _(rmd160) _(rmd256) _(rmd320)')
195 define(`hash_modes', `_(mgf) _(hmac)')
196
197 MODES = \
198 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.c') \
199 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.h') \
200 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.c') \
201 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.h')
202
203 $(MODES): modes-stamp
204 modes-stamp: genmodes
205 cd $(srcdir); ./genmodes "lit(`ciphers')" "lit(`cipher_modes')"
206 cd $(srcdir); ./genmodes "lit(`hashes')" "lit(`hash_modes')"
207 echo datestamp >modes-stamp
208
209 define(`gen_tables', `dnl
210 _(des) _(blowfish) _(twofish) _(square) _(rijndael) _(tiger) dnl
211 _(gfshare)')
212
213 autoheaders: addsuffix(`gen_tables', `-tab.h') primetab.h mptypes.h
214 define(`emit', `
215 _item`'-tab.h: _item`'-mktab
216 ./_item`'-mktab >_item`'-tab.h')dnl
217 gen_tables
218
219 primetab.h: primetab.c
220 primetab.c: genprimes
221 ./genprimes -h primetab.h -c primetab.c -m 255 \
222 -t "unsigned char" -i primetab
223 archinclude_HEADERS = mptypes.h
224 mptypes.h: mptypes
225 ./mptypes >mptypes.h
226
227 BUILT_SOURCES = \
228 getdate.c \
229 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
230 addsuffix(join(`ciphers', `-', `cipher_modes'), `.h') \
231 addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
232 addsuffix(join(`hashes', `-', `hash_modes'), `.h')
233
234 ## --- Building the main library ---
235
236 lib_LTLIBRARIES = libcatacomb.la
237
238 libcatacomb_la_LDFLAGS = -version-info 2:0:0
239 ## Middle number is the patchlevel. Final number is the minor version. The
240 ## difference between the first and last numbers is major version.
241
242 pkginclude_HEADERS = \
243 arena.h paranoia.h \
244 blkc.h hash.h gcipher.h ghash.h gmac.h grand.h ghash-def.h \
245 lcrand.h fibrand.h rc4.h seal.h rand.h noise.h fipstest.h maurer.h \
246 key.h key-data.h passphrase.h pixie.h lmem.h \
247 mpx.h mpw.h mpscan.h mparena.h mp.h mptext.h mpint.h \
248 mpbarrett.h mpmont.h mpcrt.h mprand.h mpmul.h \
249 primetab.h pfilt.h primorial.h rabin.h \
250 pgen.h prim.h strongprime.h limlee.h \
251 bbs.h rsa.h dh.h dsarand.h dsa.h \
252 oaep.h pkcs1.h pss.h \
253 gfshare.h share.h \
254 rho.h \
255 allwithsuffix(`ciphers', `cipher_modes', `.h') \
256 allwithsuffix(`hashes', `hash_modes', `.h') \
257 addsuffix(`cipher_modes', `-def.h') \
258 addsuffix(`hash_modes', `-def.h')
259
260 libcatacomb_la_SOURCES = \
261 grand.c keysz.c \
262 des-base.c des-base.h \
263 cast-s.c cast-sk.c cast-base.h cast-tab.h \
264 serpent-sbox.h skipjack-tab.h tiger-base.h \
265 daftstory.h \
266 lcrand.c fibrand.c rc4.c seal.c rand.c noise.c fipstest.c maurer.c \
267 arena.c \
268 passphrase.c pixie-client.c pixie-common.c lmem.c \
269 mpx.c mpx-kmul.c mpx-ksqr.c mpx-kmac.h mpscan.c mparena.c \
270 mp-misc.c mp-mem.c mp-const.c mp-io.c mp-arith.c mp-test.c \
271 mp-sqrt.c mp-gcd.c mp-jacobi.c mp-modsqrt.c \
272 mpint.c mptext.c mptext-file.c mptext-string.c mptext-dstr.c \
273 mpbarrett.c mpmont.c mpmont-mexp.c mpcrt.c mpmul.c mprand.c \
274 pfilt.c rabin.c primorial.c \
275 pgen.c pgen-stdev.c pgen-safe.c pgen-gcd.c prim.c strongprime.c \
276 limlee.c \
277 bbs-rand.c bbs-gen.c bbs-jump.c bbs-fetch.c \
278 rsa-priv.c rsa-pub.c rsa-gen.c rsa-recover.c rsa-fetch.c \
279 oaep.c pkcs1.c pss.c \
280 dh-gen.c dh-limlee.c dh-fetch.c \
281 dsarand.c dsa-sign.c dsa-verify.c dsa-gen.c \
282 gfshare.c share.c \
283 rho.c \
284 key-data.c key-flags.c key-text.c key-binary.c key-pass.c \
285 key-pack.c key-misc.c key-file.c key-attr.c key-io.c key-moan.c \
286 key-error.c key-fetch.c \
287 primetab.c \
288 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
289 addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
290 addsuffix(`ciphers', `.c') addsuffix(`hashes', `.c')
291
292 des-base.lo: des-tab.h
293 blowfish.lo: blowfish-tab.h
294 twofish.lo: twofish-tab.h
295 square.lo: square-tab.h
296 rijndael.lo: rijndael-tab.h
297 tiger.lo: tiger-tab.h
298 gfshare.lo: gfshare-tab.h
299 $(libcatacomb_la_OBJECTS) dsig.o keyutil.o rspit.o: mptypes.h primetab.h
300
301 ## --- Utility programs ---
302
303 bin_PROGRAMS = dsig key pixie rspit factorial hashsum mkphrase
304 bin_SCRIPTS = catacomb-config xpixie
305 noinst_PROGRAMS = \
306 genprimes mptypes \
307 des-mktab blowfish-mktab twofish-mktab square-mktab rijndael-mktab \
308 tiger-mktab serpent-check \
309 gfshare-mktab
310 LDADD = libcatacomb.la
311
312 dsig_SOURCES = dsig.c getdate.y getdate.h
313 key_SOURCES = keyutil.c getdate.y getdate.h
314 hashsum_SOURCES = hashsum.c
315 rspit_SOURCES = rspit.c
316 factorial_SOURCES = factorial.c
317 pixie_SOURCES = pixie.c pixie-common.c lmem.c arena.c
318 pixie_LDADD =
319 mkphrase_SOURCES = mkphrase.c
320
321 des_mktab_SOURCES = des-mktab.c
322 des_mktab_LDADD =
323 blowfish_mktab_SOURCES = blowfish-mktab.c
324 blowfish_mktab_LDADD =
325 twofish_mktab_SOURCES = twofish-mktab.c
326 twofish_mktab_LDADD =
327 square_mktab_SOURCES = square-mktab.c
328 square_mktab_LDADD =
329 rijndael_mktab_SOURCES = rijndael-mktab.c
330 rijndael_mktab_LDADD =
331 serpent_check_SOURCES = serpent-check.c
332 serpent_check_LDADD =
333 gfshare_mktab_SOURCES = gfshare-mktab.c
334 gfshare_mktab_LDADD =
335 tiger_mktab_SOURCES = tiger-mktab.c
336 tiger_mktab_LDADD =
337
338 genprimes_SOURCES = genprimes.c
339 genprimes_LDADD =
340
341 mptypes_SOURCES = mptypes.c
342 mptypes_LDADD =
343
344 ## --- Install the pixie setuid-root if we can ---
345 ##
346 ## Bodge around a bug in Automake: it doesn't call `install-exec-hook' from
347 ## `install' if there are subdirectories.
348
349 changequote(<, >)
350 install: install-exec-hook
351 install-exec-hook:
352 @pixie="$(bindir)/`echo pixie|sed $(transform)`"; \
353 if chown root $$pixie && chmod 4755 $$pixie; then \
354 echo "chown root $$pixie"; \
355 echo "chmod 4755 $$pixie"; \
356 else \
357 echo "***"; \
358 echo "*** You should probably install $$pixie setuid-root."; \
359 echo "***"; \
360 fi
361 changequote(`, ')
362
363 ## --- Documentation ---
364
365 man_MANS = key.1 hashsum.1 keyring.5 pixie.1
366
367 ## --- Other handy definitions ---
368
369 EXTRA_DIST = \
370 Makefile.m4 genmodes $(man_MANS) xpixie \
371 README.cipher README.hash README.random README.mp
372
373 dist-hook:
374 @ln getdate.c $(distdir) || ln $(srcdir)/getdate.c $(distdir) || true
375 @echo datestamp >$(distdir)/modes-stamp || true
376 @mkdir $(distdir)/tests || true
377 @ln $(srcdir)/tests/* $(distdir)/tests || true
378 @rm -f $(distdir)/tests/*~
379 # kr=$$HOME/.catacomb/dsig-keyring; \
380 # if [ -r $$kr ]; then \
381 # cd $(distdir); \
382 # ../key -k $$kr extract -f -secret KEYRING; \
383 # find . -type f -print0 | ../dsig -k $$kr sign -0 -oMANIFEST; \
384 # fi
385
386 ## --- Testing ---
387
388 define(`testprogs', `')
389
390 define(`CTESTRIG',
391 `define(`testprogs', testprogs \
392 $1.t)dnl
393 $1.to: $1.c
394 $(COMPILE) -c -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $(srcdir)/$1.c -o $1.to
395 $1.t: $1.to $1.o libcatacomb.la
396 $(CC) $(CFLAGS) $(LDFLAGS) $1.to .libs/libcatacomb.a $(LIBS) -o $1.t')
397
398 CTESTRIG(rc4)
399 CTESTRIG(seal)
400 adorn(`nl`'CTESTRIG(', `ciphers', `)')
401 adorn(`nl`'CTESTRIG(', `hashes', `)')
402 adorn(`nl`'CTESTRIG(', join(`ciphers', `-', `cipher_modes'), `)')
403 adorn(`nl`'CTESTRIG(', join(`hashes', `-', `hash_modes'), `)')
404 CTESTRIG(lcrand)
405 CTESTRIG(oaep)
406 CTESTRIG(mpx)
407 CTESTRIG(mpx-kmul)
408 CTESTRIG(mpx-ksqr)
409 CTESTRIG(mp-arith)
410 CTESTRIG(mp-modsqrt)
411 CTESTRIG(mp-gcd)
412 CTESTRIG(mp-jacobi)
413 CTESTRIG(mp-sqrt)
414 CTESTRIG(mptext)
415 CTESTRIG(mpint)
416 CTESTRIG(mpbarrett)
417 CTESTRIG(mpmont)
418 CTESTRIG(mpmont-mexp)
419 CTESTRIG(mpcrt)
420 CTESTRIG(mpmul)
421 CTESTRIG(pgen)
422 CTESTRIG(dsa-gen)
423 CTESTRIG(dsa-sign)
424 CTESTRIG(dsa-verify)
425 CTESTRIG(bbs-rand)
426 CTESTRIG(bbs-jump)
427 CTESTRIG(gfshare)
428 CTESTRIG(share)
429 CTESTRIG(rho)
430
431 TESTS = serpent-check testprogs
432
433 CLEANFILES = \
434 *.t *.to \
435 mptypes.h primetab.c primetab.h \
436 addsuffix(`gen_tables', `-tab.h')
437
438 ## --- Makefile building (haha!) ---
439
440 $(srcdir)/Makefile.am: $(srcdir)/Makefile.m4
441 m4 $(srcdir)/Makefile.m4 >$(srcdir)/Makefile.am
442
443 MAINTAINERCLEANFILES = \
444 $(srcdir)/Makefile.am \
445 $(srcdir)/getdate.c getdate.c \
446 $(MODES) modes-stamp $(srcdir)/modes-stamp
447
448 ##----- That's all, folks ---------------------------------------------------