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