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