Infrastructure: Switch over to pkg-config.
[u/mdw/catacomb] / Makefile.m4
CommitLineData
f9984d11 1## -*-m4-*-
d03ab969 2##
c65df279 3## $Id$
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.
45c0fd36 18##
d03ab969 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.
45c0fd36 23##
d03ab969 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
d03ab969 29AUTOMAKE_OPTIONS = foreign
30
cc44d54e 31SUBDIRS = tests
32
d03ab969 33archincludedir = $(libdir)/catacomb/include
34
35## --- List handling macros ---
36##
37## List handling is nice, usually. Unfortunately, I based this design on
38## TeX list macros rather than anything sensible...
39
40define(`_', `define(`_item', $1)define(`_item_2', $2)emit`'')
41define(`adorn', `pushdef(`emit', `$1`'_item`'$3')$2`'popdef(`emit')')
42define(`join',
43`pushdef(`emit', `adorn(``_(''_item`$2', `$3', ``)'')`'')$1`'popdef(`emit')')
44define(`addsuffix', `adorn(`', `$1', `$2')')
45define(`lit', `adorn(`', `$1', `')')
46define(`nl', `
47')
48
49define(`allwithsuffix',
50`addsuffix(`$1', `$3') addsuffix(`$2', `$3') dnl
51addsuffix(join(`$1', `-', `$2'), `$3')')
52
53## --- Autogenerated source files ---
54
cc44d54e 55define(`ciphers', `dnl
3bef8c14 56_(des) _(desx) _(des3) _(mars) dnl
621468d8 57_(idea) _(safer) _(safersk) dnl
cc44d54e 58_(blowfish) _(twofish) dnl
a16cc8cf 59_(tea) _(xtea) dnl
cc44d54e 60_(rc2) _(rc5) dnl
a16cc8cf 61_(skipjack) dnl
cc44d54e 62_(cast128) _(cast256) dnl
2e8eb64a 63_(square) _(rijndael) _(rijndael192) _(rijndael256) dnl
0ba18b90 64_(serpent) _(noekeon)')
cc44d54e 65define(`cipher_modes', `_(ecb) _(cbc) _(cfb) _(ofb) _(counter)')
d03ab969 66
817d0432 67define(`hashes', `dnl
e9026a0a 68_(md5) _(md4) _(md2) _(tiger) _(has160) dnl
5b69c389 69_(sha) _(sha224) _(sha256) _(sha384) _(sha512) dnl
7fcfe7de 70_(whirlpool) _(whirlpool256) dnl
817d0432 71_(rmd128) _(rmd160) _(rmd256) _(rmd320)')
cc44d54e 72define(`hash_modes', `_(mgf) _(hmac)')
d03ab969 73
74MODES = \
75 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.c') \
76 adorn(`$(srcdir)/', join(`ciphers', `-', `cipher_modes'), `.h') \
77 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.c') \
78 adorn(`$(srcdir)/', join(`hashes', `-', `hash_modes'), `.h')
79
5a1a3a89 80$(MODES): modes-stamp
81modes-stamp: genmodes
a7557fb1 82 cd $(srcdir); ./genmodes "lit(`ciphers')" "lit(`cipher_modes')"
83 cd $(srcdir); ./genmodes "lit(`hashes')" "lit(`hash_modes')"
5a1a3a89 84 echo datestamp >modes-stamp
85
bc981076 86define(`gen_tables', `dnl
2e8eb64a 87_(des) _(blowfish) _(twofish) dnl
7fcfe7de 88_(square) _(rijndael) _(whirlpool) dnl
3bef8c14 89_(safer) _(mars) _(tiger) dnl
7c0acba6 90_(gfshare) _(gfx-sqr)')
a7557fb1 91
7eaaecf5 92autoheaders: \
1d6d3b01
MW
93 addsuffix(`gen_tables', `-tab.h') \
94 primetab.h wheel.h mptypes.h mplimits.h
5a1a3a89 95define(`emit', `
8282072d 96_item`'-tab.h: _item`'-mktab$(EXEEXT)
f21119d7 97 ./_item`'-mktab >_item`'-tab.h.new
98 mv _item`'-tab.h.new _item`'-tab.h')dnl
bc981076 99gen_tables
5a1a3a89 100
101primetab.h: primetab.c
8282072d 102primetab.c: genprimes$(EXEEXT)
34e4f738 103 ./genprimes -h primetab.h -c primetab.c \
104 -s CATACOMB_PRIMETAB_H -n 256 \
3fe3eae5 105 -t "unsigned short" -i primetab
1d6d3b01
MW
106
107wheel.h: wheel.c
108wheel.c: genwheel$(EXEEXT)
109 ./genwheel -h wheel.h -c wheel.c \
4263ac2b 110 -s CATACOMB_WHEEL_H -n 5 \
1d6d3b01
MW
111 -t "unsigned char" -i wheel
112
7eaaecf5 113archinclude_HEADERS = mptypes.h mplimits.h
8282072d 114mptypes.h: mptypes$(EXEEXT)
f21119d7 115 ./mptypes >mptypes.h.new
116 mv mptypes.h.new mptypes.h
d03ab969 117
7eaaecf5
MW
118mplimits.h: genlimits$(EXEEXT)
119 ./genlimits h >mplimits.h.new
120 mv mplimits.h.new mplimits.h
121mplimits.c: genlimits$(EXEEXT)
122 ./genlimits c >mplimits.c.new
123 mv mplimits.c.new mplimits.c
124
8282072d 125ectab.c: ectab.in ec-gentab.awk mpdump$(EXEEXT)
4edc47b8 126 $(srcdir)/ec-gentab.awk <$(srcdir)/ectab.in >ectab.c.new
432c4e18 127 mv ectab.c.new ectab.c
128
8282072d 129ptab.c: ptab.in p-gentab.awk mpdump$(EXEEXT)
4edc47b8 130 $(srcdir)/p-gentab.awk <$(srcdir)/ptab.in >ptab.c.new
34e4f738 131 mv ptab.c.new ptab.c
132
8282072d 133bintab.c: bintab.in bin-gentab.awk mpdump$(EXEEXT)
3688eb75 134 $(srcdir)/bin-gentab.awk <$(srcdir)/bintab.in >bintab.c.new
135 mv bintab.c.new bintab.c
136
e9026a0a 137gciphertab.c: gengctab
138 $(srcdir)/gengctab gccipher gcipher >gciphertab.c.new \
139 "lit(join(`ciphers', `-', `cipher_modes')) \
b817bfc6 140 lit(join(`hashes', `-', `_(mgf)')) \
45c0fd36 141 rc4 seal"
e9026a0a 142 mv gciphertab.c.new gciphertab.c
143
144gmactab.c: gengctab
145 $(srcdir)/gengctab gcmac gmac >gmactab.c.new \
45c0fd36 146 "lit(join(`hashes', `-', `_(hmac)'))"
e9026a0a 147 mv gmactab.c.new gmactab.c
148
149ghashtab.c: gengctab
150 $(srcdir)/gengctab gchash ghash >ghashtab.c.new \
b817bfc6 151 "lit(`hashes') \
152 crc32=gcrc32"
e9026a0a 153 mv ghashtab.c.new ghashtab.c
154
d03ab969 155BUILT_SOURCES = \
e9026a0a 156 getdate.c modes-stamp gciphertab.c gmactab.c ghashtab.c \
d03ab969 157 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
158 addsuffix(join(`ciphers', `-', `cipher_modes'), `.h') \
d03ab969 159 addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
160 addsuffix(join(`hashes', `-', `hash_modes'), `.h')
ffc086db 161
162## --- Building the main library ---
8582bb3b 163
ffc086db 164lib_LTLIBRARIES = libcatacomb.la
165
4263ac2b
MW
166libcatacomb_la_LIBADD = $(CATACOMB_LIBS)
167libcatacomb_la_LDFLAGS = -version-info 3:1:1
d03ab969 168## Middle number is the patchlevel. Final number is the minor version. The
169## difference between the first and last numbers is major version.
170
d03ab969 171pkginclude_HEADERS = \
c61ee18c 172 arena.h paranoia.h buf.h qdparse.h keysz.h \
5a1a3a89 173 blkc.h hash.h gcipher.h ghash.h gmac.h grand.h ghash-def.h \
174 lcrand.h fibrand.h rc4.h seal.h rand.h noise.h fipstest.h maurer.h \
1dda051b 175 key.h key-error.h key-data.h passphrase.h pixie.h lmem.h \
75263f25 176 mpx.h bitops.h mpw.h mpscan.h mparena.h mp.h mptext.h mpint.h \
f4535c64 177 exp.h mpbarrett.h mpmont.h mpreduce.h mp-exp.h \
dbfee00a 178 mpcrt.h mprand.h mpmul.h \
f4535c64 179 gfx.h gf.h gfreduce.h gfn.h gf-exp.h \
1d6d3b01
MW
180 primetab.h wheel.h pfilt.h rabin.h \
181 pgen.h primeiter.h prim.h strongprime.h limlee.h keycheck.h \
e9026a0a 182 bbs.h rsa.h dh.h dsarand.h dsa.h gdsa.h gkcdsa.h \
b817bfc6 183 tlsprf.h sslprf.h \
cc44d54e 184 gfshare.h share.h \
817d0432 185 rho.h \
489e11f0 186 field.h field-guts.h field-exp.h \
f94b972d 187 ec.h ec-guts.h ec-exp.h ec-test.h ectab.h ec-keys.h ec-raw.h \
e40955b5 188 ptab.h bintab.h group.h group-guts.h \
d03ab969 189 allwithsuffix(`ciphers', `cipher_modes', `.h') \
bba24c1d 190 allwithsuffix(`hashes', `hash_modes', `.h') \
191 addsuffix(`cipher_modes', `-def.h') \
e7dc130f 192 addsuffix(`hash_modes', `-def.h') crc32.h
d03ab969 193
7eaaecf5
MW
194define(`MP_BASE',
195 `mpx.c mpx-kmul.c mpx-ksqr.c mpscan.c mparena.c \
196 mp-misc.c mp-mem.c mp-const.c mp-arith.c mp-io.c \
197 mptext.c mptext-string.c')
198
3fe3eae5 199define(`MP_SOURCES',
7eaaecf5
MW
200 `qdparse.c \
201 mp-test.c mplimits.c \
ffec4880 202 mp-sqrt.c mp-gcd.c mp-jacobi.c mp-modsqrt.c mp-exp.c mp-modexp.c \
7eaaecf5 203 mpint.c mptext-file.c mptext-dstr.c \
0cbfe12e 204 mptext-len.c \
aacf9080 205 exp.c mpcrt.c mpmul.c mprand.c \
34e4f738 206 mpbarrett.c mpbarrett-exp.c mpbarrett-mexp.c mpbarrett-exp.h \
207 mpmont.c mpmont-exp.c mpmont-mexp.c mpmont-exp.h \
f46efa79 208 mpreduce.c mpreduce-exp.h \
3688eb75 209 group-stdops.c group-exp.c group-exp.h g-prime.c g-bin.c \
210 group-parse.c \
34e4f738 211 group-string.c group-file.c group-dstr.c \
3688eb75 212 rho.c buf.c ptab.c bintab.c \
dbfee00a 213 GF_SOURCES PGEN_SOURCES EC_SOURCES')
7c0acba6 214
215define(`GF_SOURCES',
f4535c64 216 `gfx.c gfx-kmul.c gfx-sqr.c gf-arith.c gf-exp.c gf-gcd.c \
4edc47b8 217 gfreduce.c gfreduce-exp.h gfn.c')
3fe3eae5 218
dbfee00a 219define(`EC_SOURCES',
489e11f0 220 `field.c field-parse.c field-exp.c \
221 f-prime.c f-niceprime.c f-binpoly.c \
34e4f738 222 ec.c ec-exp.c ec-prime.c ec-bin.c ec-test.c ec-info.c ectab.c \
0f3faccd 223 ec-fetch.c ec-raw.c g-ec.c')
3fe3eae5 224
225define(`PGEN_SOURCES',
1d6d3b01 226 `pfilt.c primeiter.c rabin.c \
975679c7 227 pgen.c pgen-stdev.c pgen-gcd.c pgen-simul.c \
29e444ad 228 prim.c strongprime.c limlee.c \
f2ec324f 229 keycheck.c keycheck-mp.c keycheck-report.c \
cc44d54e 230 bbs-rand.c bbs-gen.c bbs-jump.c bbs-fetch.c \
d3325040 231 rsa-priv.c rsa-pub.c rsa-gen.c rsa-recover.c rsa-fetch.c \
53cbeae3 232 oaep.c pkcs1.c pss.c \
4e67e30b 233 dh-gen.c dh-limlee.c dh-kcdsa.c dh-check.c dh-fetch.c dh-param.c \
c97fbcf9 234 dsarand.c dsa-misc.c dsa-sign.c dsa-verify.c dsa-gen.c dsa-check.c \
e9026a0a 235 gdsa.c gkcdsa.c \
ad47fc73 236 key-data.c key-flags.c key-text.c key-binary.c key-pass.c \
5a1a3a89 237 key-pack.c key-misc.c key-file.c key-attr.c key-io.c key-moan.c \
bc981076 238 key-error.c key-fetch.c \
1d6d3b01 239 primetab.c wheel.c share.c')
3fe3eae5 240
241libcatacomb_la_SOURCES = \
518452de 242 grand.c keysz.c keysz-conv.c \
3fe3eae5 243 lcrand.c fibrand.c rc4.c seal.c rand.c noise.c fipstest.c maurer.c \
8ef0c733 244 arena.c \
025c5f4a 245 passphrase.c pixie-common.c lmem.c \
53cbeae3 246 tlsprf.c sslprf.c \
3fe3eae5 247 gfshare.c \
7eaaecf5 248 MP_BASE MP_SOURCES karatsuba.h \
e9026a0a 249 gciphertab.c ghashtab.c gmactab.c \
3fe3eae5 250 des-base.c des-base.h \
0798f682 251 desx-tab.h \
a297c216 252 rc2-tab.h \
253 skipjack-tab.h \
3fe3eae5 254 cast-s.c cast-sk.c cast-base.h cast-tab.h \
2e8eb64a 255 rijndael-base.c rijndael-base.h \
abef5380 256 md2-tab.h \
3fe3eae5 257 serpent-sbox.h skipjack-tab.h tiger-base.h \
258 daftstory.h \
d03ab969 259 addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
ce79f967 260 addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
e7dc130f 261 addsuffix(`ciphers', `.c') addsuffix(`hashes', `.c') crc32.c
76f32ed2 262
cc44d54e 263des-base.lo: des-tab.h
264blowfish.lo: blowfish-tab.h
265twofish.lo: twofish-tab.h
a16cc8cf 266square.lo: square-tab.h
2e8eb64a 267rijndael-base.lo: rijndael-tab.h
7fcfe7de 268whirlpool.lo: whirlpool-tab.h
2e8eb64a 269safer.lo: safer-tab.h
270mars.lo: mars-tab.h
a16cc8cf 271tiger.lo: tiger-tab.h
5a1a3a89 272gfshare.lo: gfshare-tab.h
7c0acba6 273gfx-sqr.lo: gfx-sqr-tab.h
748ed8dc 274
d03ab969 275## --- Utility programs ---
a7557fb1 276
e2edda68 277bin_PROGRAMS = \
fa54fe1e 278 dsig key pixie cookie rspit factorial hashsum mkphrase \
279 catcrypt catsign
c65df279 280noinst_LIBRARIES = libcatcrypt.a
4263ac2b
MW
281pkgconfigdir = $(libdir)/pkgconfig
282pkgconfig_DATA = catacomb.pc
cc44d54e 283noinst_PROGRAMS = \
1d6d3b01 284 genprimes genwheel mptypes genlimits serpent-check bittest mpdump \
e2edda68 285 perftest \
7c0acba6 286 addsuffix(`gen_tables', `-mktab')
8282072d 287LDADD = libcatcrypt.a libcatacomb.la
c65df279 288
4b09da23 289define(`LIBCAT_SRC', `cc.h getdate.h dnl
290 cc-sig.c cc-subcmd.c cc-enc.c cc-kem.c cc-list.c')
291libcatcrypt_a_SOURCES = LIBCAT_SRC getdate.y
292
7eaaecf5 293patsubst(MP_BASE MP_SOURCES, `\.c\>', `.lo') dsig.o keyutil.o rspit.o \
4b09da23 294 patsubst(LIBCAT_SRC, `\.c\>', `.o'): \
1d6d3b01 295 mptypes.h primetab.h wheel.h
7eaaecf5 296patsubst(MP_SOURCES, `\.c\>', `.lo'): mplimits.h
45c0fd36 297
c65df279 298dsig_SOURCES = dsig.c
299cookie_SOURCES = cookie.c
300catcrypt_SOURCES = catcrypt.c
fa54fe1e 301catsign_SOURCES = catsign.c
c65df279 302key_SOURCES = keyutil.c
a16cc8cf 303hashsum_SOURCES = hashsum.c
bba24c1d 304rspit_SOURCES = rspit.c
817d0432 305factorial_SOURCES = factorial.c
e2edda68 306perftest_SOURCES = perftest.c
025c5f4a 307pixie_SOURCES = pixie.c pixie-common.c lmem.c arena.c passphrase.c
4263ac2b 308pixie_LDADD = $(PIXIE_LIBS)
8282072d 309pixie_CFLAGS = $(AM_CFLAGS)
b55540f6 310mkphrase_SOURCES = mkphrase.c
75263f25 311bittest_SOURCES = bittest.c
45c0fd36 312bittest_LDADD =
817d0432 313
7c0acba6 314define(`emit', `
315patsubst(_item, `[^a-zA-Z0-9]', `_')_mktab_SOURCES = _item`'-mktab.c
316patsubst(_item, `[^a-zA-Z0-9]', `_')_mktab_LDADD =')dnl
317gen_tables
318
cc44d54e 319serpent_check_SOURCES = serpent-check.c
320serpent_check_LDADD =
cc44d54e 321
d03ab969 322genprimes_SOURCES = genprimes.c
323genprimes_LDADD =
324
1d6d3b01
MW
325genwheel_SOURCES = genwheel.c
326genwheel_LDADD =
327
d03ab969 328mptypes_SOURCES = mptypes.c
329mptypes_LDADD =
330
1d6d3b01 331genlimits_SOURCES = genlimits.c MP_BASE mptypes.h
7eaaecf5
MW
332genlimits_LDADD =
333genlimits_CFLAGS = $(AM_CFLAGS)
334
335mpdump_SOURCES = mpdump.c MP_BASE
432c4e18 336mpdump_LDADD =
8282072d 337mpdump_CFLAGS = $(AM_CFLAGS)
432c4e18 338
de5585f8 339## --- Install the pixie setuid-root if we can ---
525af7b8 340##
341## Bodge around a bug in Automake: it doesn't call `install-exec-hook' from
342## `install' if there are subdirectories.
de5585f8 343
344changequote(<, >)
21aac40c 345# install: install-exec-hook
de5585f8 346install-exec-hook:
0798f682 347 @pixie="$(DESTDIR)$(bindir)/`echo pixie|sed $(transform)`"; \
de5585f8 348 if chown root $$pixie && chmod 4755 $$pixie; then \
349 echo "chown root $$pixie"; \
350 echo "chmod 4755 $$pixie"; \
351 else \
352 echo "***"; \
353 echo "*** You should probably install $$pixie setuid-root."; \
354 echo "***"; \
355 fi
356changequote(`, ')
357
d03ab969 358## --- Documentation ---
359
fa54fe1e 360man_MANS = \
6abcf20f 361 key.1 dsig.1 cookie.1 catcrypt.1 catsign.1 hashsum.1 mkphrase.1 \
fa54fe1e 362 keyring.5 pixie.1
d03ab969 363
d7f3f07d
MW
364## --- Prime group keyring ---
365
366pkgdata_DATA = pgroups.kr
367
368$(srcdir)/pgroups.kr: ptab.in mkpgroups
369 cd $(srcdir) && rm -f pgroups.kr && ./mkpgroups <ptab.in
370
d03ab969 371## --- Other handy definitions ---
9183ab7b 372
6f51228e 373EXTRA_DIST = \
b817bfc6 374 Makefile.m4 genmodes gengctab $(man_MANS) xpixie \
375 group-test.c rsa-test.c \
8282072d 376 ectab.in ec-gentab.awk \
d7f3f07d 377 ptab.in p-gentab.awk mkpgroups pgroups.kr \
8282072d 378 bintab.in bin-gentab.awk \
2ee993fe 379 README.cipher README.hash README.random README.mp \
380 debian/rules debian/copyright debian/control debian/changelog \
381 debian/catacomb-bin.postinst debian/catacomb-bin.config \
382 debian/catacomb-bin.prerm debian/catacomb-bin.templates
d03ab969 383
384dist-hook:
e9026a0a 385 @for i in getdate.c gciphertab.c ghashtab.c gmactab.c; do \
386 ln $$i $(distdir) || ln $(srcdir)/$$i $(distdir) || true; \
387 done
5a1a3a89 388 @echo datestamp >$(distdir)/modes-stamp || true
7c0acba6 389 @for i in calc tests; do \
390 mkdir $(distdir)/$$i; \
391 ln $(srcdir)/$$i/*[!~] $(distdir)/$$i; \
392 done || true
cc44d54e 393# kr=$$HOME/.catacomb/dsig-keyring; \
394# if [ -r $$kr ]; then \
395# cd $(distdir); \
396# ../key -k $$kr extract -f -secret KEYRING; \
397# find . -type f -print0 | ../dsig -k $$kr sign -0 -oMANIFEST; \
398# fi
471db039 399
a094cab7 400## --- Testing ---
d03ab969 401
471db039 402define(`testprogs', `')
403
404define(`CTESTRIG',
ffc086db 405`define(`testprogs', testprogs \
8282072d 406 $1.t$(EXEEXT))dnl
8b6cedcc 407$1.to: $1.c
408 $(COMPILE) -c -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $(srcdir)/$1.c -o $1.to
8282072d 409$1.t$(EXEEXT): $1.to libcatacomb.la
410 $(CC) $(CFLAGS) $(LDFLAGS) $1.to .libs/libcatacomb.a $(LIBS) -o $1.t$(EXEEXT)')
a7557fb1 411
412CTESTRIG(rc4)
cc44d54e 413CTESTRIG(seal)
a7557fb1 414adorn(`nl`'CTESTRIG(', `ciphers', `)')
ce79f967 415adorn(`nl`'CTESTRIG(', `hashes', `)')
471db039 416adorn(`nl`'CTESTRIG(', join(`ciphers', `-', `cipher_modes'), `)')
417adorn(`nl`'CTESTRIG(', join(`hashes', `-', `hash_modes'), `)')
bba24c1d 418CTESTRIG(lcrand)
d83a82be 419CTESTRIG(tlsprf)
51a0f805 420CTESTRIG(sslprf)
471db039 421CTESTRIG(mpx)
bba24c1d 422CTESTRIG(mpx-kmul)
b6f2c5a0 423CTESTRIG(mpx-ksqr)
a7557fb1 424CTESTRIG(mp-arith)
1cf8e9fb 425CTESTRIG(mp-modsqrt)
a7557fb1 426CTESTRIG(mp-gcd)
9fc256e8 427CTESTRIG(mp-jacobi)
1cf8e9fb 428CTESTRIG(mp-sqrt)
ffec4880 429CTESTRIG(mp-modexp)
bba24c1d 430CTESTRIG(mptext)
70b904c5 431CTESTRIG(mpint)
bba24c1d 432CTESTRIG(mpbarrett)
34e4f738 433CTESTRIG(mpbarrett-exp)
aacf9080 434CTESTRIG(mpbarrett-mexp)
a7557fb1 435CTESTRIG(mpmont)
34e4f738 436CTESTRIG(mpmont-exp)
a7557fb1 437CTESTRIG(mpmont-mexp)
f46efa79 438CTESTRIG(mpreduce)
9fc256e8 439CTESTRIG(mpcrt)
817d0432 440CTESTRIG(mpmul)
b817bfc6 441CTESTRIG(rsa-test)
7c0acba6 442CTESTRIG(gfx)
ceb3f0c0 443CTESTRIG(gfx-sqr)
7c0acba6 444CTESTRIG(gfx-kmul)
ceb3f0c0 445CTESTRIG(gf-arith)
446CTESTRIG(gf-gcd)
447CTESTRIG(gfreduce)
4edc47b8 448CTESTRIG(gfn)
dbfee00a 449CTESTRIG(ec-prime)
ceb3f0c0 450CTESTRIG(ec-bin)
bc985cef 451CTESTRIG(ec-test)
fb83f882 452CTESTRIG(ec-info)
34e4f738 453CTESTRIG(dh-param)
454CTESTRIG(group-test)
e9026a0a 455CTESTRIG(gdsa)
456CTESTRIG(gkcdsa)
a7557fb1 457CTESTRIG(pgen)
1d6d3b01 458CTESTRIG(primeiter)
471db039 459CTESTRIG(dsa-gen)
460CTESTRIG(dsa-sign)
d03ab969 461CTESTRIG(dsa-verify)
bba24c1d 462CTESTRIG(bbs-rand)
463CTESTRIG(bbs-jump)
cc44d54e 464CTESTRIG(gfshare)
465CTESTRIG(share)
817d0432 466CTESTRIG(rho)
a7557fb1 467
75263f25 468TESTS = serpent-check bittest testprogs
d03ab969 469
cc44d54e 470CLEANFILES = \
d7f3f07d 471 *.t$(EXEEXT) *.to *.kr.old \
1d6d3b01
MW
472 mptypes.h primetab.c primetab.h wheel.c wheel.h \
473 ectab.c ptab.c bintab.c \
bc981076 474 addsuffix(`gen_tables', `-tab.h')
d03ab969 475
476## --- Makefile building (haha!) ---
477
478$(srcdir)/Makefile.am: $(srcdir)/Makefile.m4
f21119d7 479 m4 $(srcdir)/Makefile.m4 >$(srcdir)/Makefile.am.new
480 mv $(srcdir)/Makefile.am.new $(srcdir)/Makefile.am
a7557fb1 481
9312c71f 482DISTCLEANFILES = libtool
483
a7557fb1 484MAINTAINERCLEANFILES = \
d03ab969 485 $(srcdir)/Makefile.am \
486 $(srcdir)/getdate.c getdate.c \
d7f3f07d 487 $(srcdir)/pgroups.kr \
5a1a3a89 488 $(MODES) modes-stamp $(srcdir)/modes-stamp
d03ab969 489
490##----- That's all, folks ---------------------------------------------------