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