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