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