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