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