X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/ce79f967382a3aadc21001084637fa401127c4a2..8b6cedcc56d9a216eab8d9f65a57fb704a4fd95e:/Makefile.m4 diff --git a/Makefile.m4 b/Makefile.m4 index c9ca345..502d29d 100644 --- a/Makefile.m4 +++ b/Makefile.m4 @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.m4,v 1.12 1999/11/20 22:36:26 mdw Exp $ +## $Id: Makefile.m4,v 1.14 1999/11/22 00:17:09 mdw Exp $ ## ## Makefile for Catacomb ## @@ -29,8 +29,9 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.m4,v $ -## Revision 1.12 1999/11/20 22:36:26 mdw -## Improve dependencies. Move mpx testing into mpx.c. +## Revision 1.14 1999/11/22 00:17:09 mdw +## Create object files for test programs so that rebuilding doesn't take so +## long. ## ## Revision 1.12 1999/11/20 22:36:26 mdw ## Improve dependencies. Move mpx testing into mpx.c. @@ -130,7 +131,7 @@ BUILT_SOURCES = \ addsuffix(join(`hashes', `-', `hash_modes'), `.h') ## --- Building the main library --- -libcatacomb_la_LDFLAGS = -version-info 0:3:0 + lib_LTLIBRARIES = libcatacomb.la libcatacomb_la_LDFLAGS = -version-info 0:4:0 @@ -210,8 +211,10 @@ define(`testprogs', `') define(`CTESTRIG', `define(`testprogs', testprogs \ $1.t)dnl -$1.t: $1.c libcatacomb.la - $(COMPILE) -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $(srcdir)/$1.c .libs/libcatacomb.a $(LIBS) -o $1.t') +$1.to: $1.c + $(COMPILE) -c -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $(srcdir)/$1.c -o $1.to +$1.t: $1.to .libs/libcatacomb.a + $(CC) $(LDFLAGS) $1.to .libs/libcatacomb.a $(LIBS) -o $1.t') CTESTRIG(rc4) adorn(`nl`'CTESTRIG(', `ciphers', `)') @@ -231,7 +234,7 @@ CTESTRIG(dsa-verify) TESTS = testprogs -CLEANFILES = *.t mptypes.h des_sp.h ptab.c ptab.h +CLEANFILES = *.t *.to mptypes.h des_sp.h ptab.c ptab.h ## --- Makefile building (haha!) ---