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