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