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