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