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