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