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