04d03f65f2de27ddad176a5c3a6dd79978e76868
[u/mdw/catacomb] / Makefile.m4
1 ## -*-m4-*-
2 ##
3 ## $Id: Makefile.m4,v 1.83 2004/04/21 00:37:32 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 AUTOMAKE_OPTIONS = foreign
30
31 SUBDIRS = tests
32
33 archincludedir = $(libdir)/catacomb/include
34
35 ## --- List handling macros ---
36 ##
37 ## List handling is nice, usually. Unfortunately, I based this design on
38 ## TeX list macros rather than anything sensible...
39
40 define(`_', `define(`_item', $1)define(`_item_2', $2)emit`'')
41 define(`adorn', `pushdef(`emit', `$1`'_item`'$3')$2`'popdef(`emit')')
42 define(`join',
43 `pushdef(`emit', `adorn(``_(''_item`$2', `$3', ``)'')`'')$1`'popdef(`emit')')
44 define(`addsuffix', `adorn(`', `$1', `$2')')
45 define(`lit', `adorn(`', `$1', `')')
46 define(`nl', `
47 ')
48
49 define(`allwithsuffix',
50 `addsuffix(`$1', `$3') addsuffix(`$2', `$3') dnl
51 addsuffix(join(`$1', `-', `$2'), `$3')')
52
53 ## --- Autogenerated source files ---
54
55 define(`ciphers', `dnl
56 _(des) _(desx) _(des3) _(mars) dnl
57 _(idea) _(safer) _(safersk) dnl
58 _(blowfish) _(twofish) dnl
59 _(tea) _(xtea) dnl
60 _(rc2) _(rc5) dnl
61 _(skipjack) dnl
62 _(cast128) _(cast256) dnl
63 _(square) _(rijndael) _(rijndael192) _(rijndael256) dnl
64 _(serpent) _(noekeon)')
65 define(`cipher_modes', `_(ecb) _(cbc) _(cfb) _(ofb) _(counter)')
66
67 define(`hashes', `dnl
68 _(md5) _(md4) _(md2) _(tiger) _(has160) dnl
69 _(sha) _(sha224) _(sha256) _(sha384) _(sha512) dnl
70 _(rmd128) _(rmd160) _(rmd256) _(rmd320)')
71 define(`hash_modes', `_(mgf) _(hmac)')
72
73 MODES = \
74 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.c') \
75 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.h') \
76 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.c') \
77 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.h')
78
79 $(MODES): modes-stamp
80 modes-stamp: genmodes
81 cd $(srcdir); ./genmodes "lit(`ciphers')" "lit(`cipher_modes')"
82 cd $(srcdir); ./genmodes "lit(`hashes')" "lit(`hash_modes')"
83 echo datestamp >modes-stamp
84
85 define(`gen_tables', `dnl
86 _(des) _(blowfish) _(twofish) dnl
87 _(square) _(rijndael) dnl
88 _(safer) _(mars) _(tiger) dnl
89 _(gfshare) _(gfx-sqr)')
90
91 autoheaders: addsuffix(`gen_tables', `-tab.h') primetab.h mptypes.h
92 define(`emit', `
93 _item`'-tab.h: _item`'-mktab
94 ./_item`'-mktab >_item`'-tab.h.new
95 mv _item`'-tab.h.new _item`'-tab.h')dnl
96 gen_tables
97
98 primetab.h: primetab.c
99 primetab.c: genprimes
100 ./genprimes -h primetab.h -c primetab.c \
101 -s CATACOMB_PRIMETAB_H -n 256 \
102 -t "unsigned short" -i primetab
103 archinclude_HEADERS = mptypes.h
104 mptypes.h: mptypes
105 ./mptypes >mptypes.h.new
106 mv mptypes.h.new mptypes.h
107
108 ectab.c: ectab.in ec-gentab.awk mpdump
109 $(srcdir)/ec-gentab.awk <$(srcdir)/ectab.in >ectab.c.new
110 mv ectab.c.new ectab.c
111
112 ptab.c: ptab.in p-gentab.awk mpdump
113 $(srcdir)/p-gentab.awk <$(srcdir)/ptab.in >ptab.c.new
114 mv ptab.c.new ptab.c
115
116 gciphertab.c: gengctab
117 $(srcdir)/gengctab gccipher gcipher >gciphertab.c.new \
118 "lit(join(`ciphers', `-', `cipher_modes')) \
119 lit(join(`hashes', `-', `_(mgf)')) \
120 rc4 seal"
121 mv gciphertab.c.new gciphertab.c
122
123 gmactab.c: gengctab
124 $(srcdir)/gengctab gcmac gmac >gmactab.c.new \
125 "lit(join(`hashes', `-', `_(hmac)'))"
126 mv gmactab.c.new gmactab.c
127
128 ghashtab.c: gengctab
129 $(srcdir)/gengctab gchash ghash >ghashtab.c.new \
130 "lit(`hashes') \
131 crc32=gcrc32"
132 mv ghashtab.c.new ghashtab.c
133
134 BUILT_SOURCES = \
135 getdate.c modes-stamp gciphertab.c gmactab.c ghashtab.c \
136 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
137 addsuffix(join(`ciphers', `-', `cipher_modes'), `.h') \
138 addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
139 addsuffix(join(`hashes', `-', `hash_modes'), `.h')
140
141 ## --- Building the main library ---
142
143 lib_LTLIBRARIES = libcatacomb.la
144
145 libcatacomb_la_LDFLAGS = -version-info 3:0:1
146 ## Middle number is the patchlevel. Final number is the minor version. The
147 ## difference between the first and last numbers is major version.
148
149 pkginclude_HEADERS = \
150 arena.h paranoia.h buf.h qdparse.h \
151 blkc.h hash.h gcipher.h ghash.h gmac.h grand.h ghash-def.h \
152 lcrand.h fibrand.h rc4.h seal.h rand.h noise.h fipstest.h maurer.h \
153 key.h key-data.h passphrase.h pixie.h lmem.h \
154 mpx.h bitops.h mpw.h mpscan.h mparena.h mp.h mptext.h mpint.h \
155 exp.h mpbarrett.h mpmont.h mpreduce.h \
156 mpcrt.h mprand.h mpmul.h \
157 gfx.h gf.h gfreduce.h gfn.h \
158 primetab.h pfilt.h rabin.h \
159 pgen.h prim.h strongprime.h limlee.h keycheck.h \
160 bbs.h rsa.h dh.h dsarand.h dsa.h gdsa.h gkcdsa.h \
161 tlsprf.h sslprf.h \
162 gfshare.h share.h \
163 rho.h \
164 field.h ec.h ec-exp.h ec-test.h ectab.h ec-keys.h ec-raw.h \
165 ptab.h group.h \
166 allwithsuffix(`ciphers', `cipher_modes', `.h') \
167 allwithsuffix(`hashes', `hash_modes', `.h') \
168 addsuffix(`cipher_modes', `-def.h') \
169 addsuffix(`hash_modes', `-def.h') crc32.h
170
171 define(`MP_SOURCES',
172 `mpx.c mpx-kmul.c mpx-ksqr.c mpscan.c mparena.c qdparse.c \
173 mp-misc.c mp-mem.c mp-const.c mp-io.c mp-arith.c mp-test.c \
174 mp-sqrt.c mp-gcd.c mp-jacobi.c mp-modsqrt.c \
175 mpint.c mptext.c mptext-file.c mptext-string.c mptext-dstr.c \
176 mptext-len.c \
177 exp.c mpcrt.c mpmul.c mprand.c \
178 mpbarrett.c mpbarrett-exp.c mpbarrett-mexp.c mpbarrett-exp.h \
179 mpmont.c mpmont-exp.c mpmont-mexp.c mpmont-exp.h \
180 mpreduce.c mpreduce-exp.h \
181 group-stdops.c group-exp.c group-exp.h g-prime.c group-parse.c \
182 group-string.c group-file.c group-dstr.c \
183 rho.c buf.c ptab.c \
184 GF_SOURCES PGEN_SOURCES EC_SOURCES')
185
186 define(`GF_SOURCES',
187 `gfx.c gfx-kmul.c gfx-sqr.c gf-arith.c gf-gcd.c \
188 gfreduce.c gfreduce-exp.h gfn.c')
189
190 define(`EC_SOURCES',
191 `field.c field-parse.c f-prime.c f-niceprime.c f-binpoly.c \
192 ec.c ec-exp.c ec-prime.c ec-bin.c ec-test.c ec-info.c ectab.c \
193 ec-fetch.c ec-raw.c g-ec.c')
194
195 define(`PGEN_SOURCES',
196 `pfilt.c rabin.c \
197 pgen.c pgen-stdev.c pgen-safe.c pgen-gcd.c prim.c strongprime.c \
198 limlee.c \
199 keycheck.c keycheck-mp.c keycheck-report.c \
200 bbs-rand.c bbs-gen.c bbs-jump.c bbs-fetch.c \
201 rsa-priv.c rsa-pub.c rsa-gen.c rsa-recover.c rsa-fetch.c \
202 oaep.c pkcs1.c pss.c \
203 dh-gen.c dh-limlee.c dh-check.c dh-fetch.c dh-param.c \
204 dsarand.c dsa-sign.c dsa-verify.c dsa-gen.c dsa-check.c \
205 gdsa.c gkcdsa.c \
206 key-data.c key-flags.c key-text.c key-binary.c key-pass.c \
207 key-pack.c key-misc.c key-file.c key-attr.c key-io.c key-moan.c \
208 key-error.c key-fetch.c \
209 primetab.c share.c')
210
211 libcatacomb_la_SOURCES = \
212 grand.c keysz.c \
213 lcrand.c fibrand.c rc4.c seal.c rand.c noise.c fipstest.c maurer.c \
214 arena.c \
215 passphrase.c pixie-client.c pixie-common.c lmem.c \
216 tlsprf.c sslprf.c \
217 gfshare.c \
218 MP_SOURCES karatsuba.h \
219 gciphertab.c ghashtab.c gmactab.c \
220 des-base.c des-base.h \
221 desx-tab.h \
222 rc2-tab.h \
223 skipjack-tab.h \
224 cast-s.c cast-sk.c cast-base.h cast-tab.h \
225 rijndael-base.c rijndael-base.h \
226 md2-tab.h \
227 serpent-sbox.h skipjack-tab.h tiger-base.h \
228 daftstory.h \
229 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
230 addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
231 addsuffix(`ciphers', `.c') addsuffix(`hashes', `.c') crc32.c
232
233 des-base.lo: des-tab.h
234 blowfish.lo: blowfish-tab.h
235 twofish.lo: twofish-tab.h
236 square.lo: square-tab.h
237 rijndael-base.lo: rijndael-tab.h
238 safer.lo: safer-tab.h
239 mars.lo: mars-tab.h
240 tiger.lo: tiger-tab.h
241 gfshare.lo: gfshare-tab.h
242 gfx-sqr.lo: gfx-sqr-tab.h
243 patsubst(MP_SOURCES, `\.c\>', `.lo') dsig.o keyutil.o rspit.o: \
244 mptypes.h primetab.h
245
246 ## --- Utility programs ---
247
248 bin_PROGRAMS = \
249 dsig key pixie rspit factorial hashsum mkphrase catcrypt
250 bin_SCRIPTS = catacomb-config xpixie
251 noinst_PROGRAMS = \
252 genprimes mptypes serpent-check bittest mpdump \
253 perftest \
254 addsuffix(`gen_tables', `-mktab')
255 LDADD = libcatacomb.la
256
257 dsig_SOURCES = dsig.c cc.h cc-sig.c getdate.y getdate.h
258 catcrypt_SOURCES = catcrypt.c cc.h cc-sig.c cc-kem.c cc-enc.c
259 key_SOURCES = keyutil.c getdate.y getdate.h
260 hashsum_SOURCES = hashsum.c
261 rspit_SOURCES = rspit.c
262 factorial_SOURCES = factorial.c
263 perftest_SOURCES = perftest.c
264 pixie_SOURCES = pixie.c pixie-common.c lmem.c arena.c
265 pixie_LDADD =
266 mkphrase_SOURCES = mkphrase.c
267 bittest_SOURCES = bittest.c
268 bittest_LDADD =
269
270 define(`emit', `
271 patsubst(_item, `[^a-zA-Z0-9]', `_')_mktab_SOURCES = _item`'-mktab.c
272 patsubst(_item, `[^a-zA-Z0-9]', `_')_mktab_LDADD =')dnl
273 gen_tables
274
275 serpent_check_SOURCES = serpent-check.c
276 serpent_check_LDADD =
277
278 genprimes_SOURCES = genprimes.c
279 genprimes_LDADD =
280
281 mptypes_SOURCES = mptypes.c
282 mptypes_LDADD =
283
284 mpdump_SOURCES = \
285 mpdump.c \
286 mpx.c mpx-kmul.c mpx-ksqr.c mpscan.c mparena.c \
287 mp-misc.c mp-mem.c mp-const.c mp-arith.c mp-io.c \
288 mptext.c mptext-string.c
289 mpdump_LDADD =
290
291 ## --- Install the pixie setuid-root if we can ---
292 ##
293 ## Bodge around a bug in Automake: it doesn't call `install-exec-hook' from
294 ## `install' if there are subdirectories.
295
296 changequote(<, >)
297 install: install-exec-hook
298 install-exec-hook:
299 @pixie="$(DESTDIR)$(bindir)/`echo pixie|sed $(transform)`"; \
300 if chown root $$pixie && chmod 4755 $$pixie; then \
301 echo "chown root $$pixie"; \
302 echo "chmod 4755 $$pixie"; \
303 else \
304 echo "***"; \
305 echo "*** You should probably install $$pixie setuid-root."; \
306 echo "***"; \
307 fi
308 changequote(`, ')
309
310 ## --- Documentation ---
311
312 man_MANS = key.1 hashsum.1 keyring.5 pixie.1
313
314 ## --- Other handy definitions ---
315
316 EXTRA_DIST = \
317 Makefile.m4 genmodes gengctab $(man_MANS) xpixie \
318 group-test.c rsa-test.c \
319 ectab.in ec-gentab.awk ptab.in p-gentab.awk \
320 README.cipher README.hash README.random README.mp \
321 debian/rules debian/copyright debian/control debian/changelog \
322 debian/catacomb-bin.postinst debian/catacomb-bin.config \
323 debian/catacomb-bin.prerm debian/catacomb-bin.templates
324
325 dist-hook:
326 @for i in getdate.c gciphertab.c ghashtab.c gmactab.c; do \
327 ln $$i $(distdir) || ln $(srcdir)/$$i $(distdir) || true; \
328 done
329 @echo datestamp >$(distdir)/modes-stamp || true
330 @for i in calc tests; do \
331 mkdir $(distdir)/$$i; \
332 ln $(srcdir)/$$i/*[!~] $(distdir)/$$i; \
333 done || true
334 # kr=$$HOME/.catacomb/dsig-keyring; \
335 # if [ -r $$kr ]; then \
336 # cd $(distdir); \
337 # ../key -k $$kr extract -f -secret KEYRING; \
338 # find . -type f -print0 | ../dsig -k $$kr sign -0 -oMANIFEST; \
339 # fi
340
341 ## --- Testing ---
342
343 define(`testprogs', `')
344
345 define(`CTESTRIG',
346 `define(`testprogs', testprogs \
347 $1.t)dnl
348 $1.to: $1.c
349 $(COMPILE) -c -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $(srcdir)/$1.c -o $1.to
350 $1.t: $1.to libcatacomb.la
351 $(CC) $(CFLAGS) $(LDFLAGS) $1.to .libs/libcatacomb.a $(LIBS) -o $1.t')
352
353 CTESTRIG(rc4)
354 CTESTRIG(seal)
355 adorn(`nl`'CTESTRIG(', `ciphers', `)')
356 adorn(`nl`'CTESTRIG(', `hashes', `)')
357 adorn(`nl`'CTESTRIG(', join(`ciphers', `-', `cipher_modes'), `)')
358 adorn(`nl`'CTESTRIG(', join(`hashes', `-', `hash_modes'), `)')
359 CTESTRIG(lcrand)
360 CTESTRIG(tlsprf)
361 CTESTRIG(sslprf)
362 CTESTRIG(mpx)
363 CTESTRIG(mpx-kmul)
364 CTESTRIG(mpx-ksqr)
365 CTESTRIG(mp-arith)
366 CTESTRIG(mp-modsqrt)
367 CTESTRIG(mp-gcd)
368 CTESTRIG(mp-jacobi)
369 CTESTRIG(mp-sqrt)
370 CTESTRIG(mptext)
371 CTESTRIG(mpint)
372 CTESTRIG(mpbarrett)
373 CTESTRIG(mpbarrett-exp)
374 CTESTRIG(mpbarrett-mexp)
375 CTESTRIG(mpmont)
376 CTESTRIG(mpmont-exp)
377 CTESTRIG(mpmont-mexp)
378 CTESTRIG(mpreduce)
379 CTESTRIG(mpcrt)
380 CTESTRIG(mpmul)
381 CTESTRIG(rsa-test)
382 CTESTRIG(gfx)
383 CTESTRIG(gfx-sqr)
384 CTESTRIG(gfx-kmul)
385 CTESTRIG(gf-arith)
386 CTESTRIG(gf-gcd)
387 CTESTRIG(gfreduce)
388 CTESTRIG(gfn)
389 CTESTRIG(ec-prime)
390 CTESTRIG(ec-bin)
391 CTESTRIG(ec-test)
392 CTESTRIG(ec-info)
393 CTESTRIG(dh-param)
394 CTESTRIG(group-test)
395 CTESTRIG(gdsa)
396 CTESTRIG(gkcdsa)
397 CTESTRIG(pgen)
398 CTESTRIG(dsa-gen)
399 CTESTRIG(dsa-sign)
400 CTESTRIG(dsa-verify)
401 CTESTRIG(bbs-rand)
402 CTESTRIG(bbs-jump)
403 CTESTRIG(gfshare)
404 CTESTRIG(share)
405 CTESTRIG(rho)
406
407 TESTS = serpent-check bittest testprogs
408
409 CLEANFILES = \
410 *.t *.to \
411 mptypes.h primetab.c primetab.h ectab.c \
412 addsuffix(`gen_tables', `-tab.h')
413
414 ## --- Makefile building (haha!) ---
415
416 $(srcdir)/Makefile.am: $(srcdir)/Makefile.m4
417 m4 $(srcdir)/Makefile.m4 >$(srcdir)/Makefile.am.new
418 mv $(srcdir)/Makefile.am.new $(srcdir)/Makefile.am
419
420 DISTCLEANFILES = libtool
421
422 MAINTAINERCLEANFILES = \
423 $(srcdir)/Makefile.am \
424 $(srcdir)/getdate.c getdate.c \
425 $(MODES) modes-stamp $(srcdir)/modes-stamp
426
427 ##----- That's all, folks ---------------------------------------------------