New multiprecision integer arithmetic suite.
[u/mdw/catacomb] / Makefile.m4
index c381793..ea78561 100644 (file)
@@ -1,6 +1,6 @@
 ## -*-makefile-*-
 ##
-## $Id: Makefile.m4,v 1.6 1999/11/11 17:47:34 mdw Exp $
+## $Id: Makefile.m4,v 1.8 1999/11/13 01:56:07 mdw Exp $
 ##
 ## Makefile for Catacomb
 ##
 ##----- Revision history ----------------------------------------------------
 ##
 ## $Log: Makefile.m4,v $
-## Revision 1.6  1999/11/11 17:47:34  mdw
-## Updates for new configuration system, and `mptypes' generator.
+## Revision 1.8  1999/11/13 01:56:07  mdw
+## Include multiprecision maths stuff.
+##
+## Revision 1.8  1999/11/13 01:56:07  mdw
+## Include multiprecision maths stuff.
 ##
 ## Revision 1.7  1999/11/11 19:01:02  mdw
 ## Use `libtool' to generate a shared library.
@@ -111,7 +114,11 @@ BUILT_SOURCES = \
        addsuffix(join(`ciphers', `-', `cipher_modes'), `.h') \
        addsuffix(join(`hashes', `-', `hash_modes'), `.c') \
        addsuffix(join(`hashes', `-', `hash_modes'), `.h')
-lib_LIBRARIES = libcatacomb.a
+
+## --- Building the main library ---
+libcatacomb_la_LDFLAGS = -version-info 0:3:0
+lib_LTLIBRARIES = libcatacomb.la
+
 libcatacomb_la_LDFLAGS = -version-info 0:4:0
 ## Middle number is the patchlevel.  Final number is the minor version.  The
 ## difference between the first and last numbers is major version.
@@ -120,25 +127,29 @@ define(`emit', `$1.h ')
 pkginclude_HEADERS = \
        paranoia.h \
        blkc.h hash.h \
+       mpx.h mpw.h mpscan.h \
        mpx.h mpw.h mpscan.h mparena.h mp.h mptext.h mpmont.h \
        ptab.h pgen.h rabin.h \
        dsa.h dh.h \
        allwithsuffix(`ciphers', `cipher_modes', `.h') \
-libcatacomb_a_SOURCES = \
+       allwithsuffix(`hashes', `hash_modes', `.h')
 
 define(`emit', `$1.c ')
 libcatacomb_la_SOURCES = \
        des-base.c des-base.h des_sp.h bf_ikey.h daftstory.h \
+       mpx.c mpscan.c \
        ptab.c pgen.c rabin.c \
        dsa-sign.c dsa-verify.c dsa-gen.c \
        dh-prime.c \
        addsuffix(join(`ciphers', `-', `cipher_modes'), `.c') \
+       addsuffix(`ciphers', `.c') addsuffix(`hashes', `.c')
+
 des-base.lo: des_sp.h
 mpx.lo: mptypes.h
 
 ## --- Utility programs ---
 noinst_PROGRAMS = des-mktab mptypes
-LDADD = libcatacomb.a
+bin_PROGRAMS = key
 bin_SCRIPTS = catacomb-config
 noinst_PROGRAMS = des-mktab genprimes mptypes
 LDADD = libcatacomb.la
@@ -165,16 +176,17 @@ dist-hook:
        @ln $(srcdir)/tests/* $(distdir)/tests || true
        @rm -f $(distdir)/tests/*~
 TESTS = \
-       rc4.t \
+       rc4.t mpx-test.t \
        addsuffix(join(`ciphers', `-', `cipher_modes'), `.t') \
        addsuffix(join(`hashes', `-', `hash_modes'), `.t') \
        addsuffix(`ciphers', `.t') addsuffix(`hashes', `.t')
 ## --- Testing ---
 
-`$1.t: $1.c libcatacomb.a
-       $(COMPILE) -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $(srcdir)/$1.c libcatacomb.a $(LIBS) -o $1.t')
+`$1.t: $1.c libcatacomb.la
+`define(`testprogs', testprogs \
        $1.t)dnl
 $1.t: $1.c libcatacomb.la
+CTESTRIG(mpx-test)
 
 adorn(`nl`'CTESTRIG(', `ciphers', `)')
 adorn(`nl`'CTESTRIG(', `hashes', `)')