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