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