From 8b6cedcc56d9a216eab8d9f65a57fb704a4fd95e Mon Sep 17 00:00:00 2001 From: mdw Date: Mon, 22 Nov 1999 00:17:09 +0000 Subject: [PATCH] Create object files for test programs so that rebuilding doesn't take so long. --- Makefile.m4 | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile.m4 b/Makefile.m4 index 3d746b2..502d29d 100644 --- a/Makefile.m4 +++ b/Makefile.m4 @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.m4,v 1.13 1999/11/21 13:06:48 mdw Exp $ +## $Id: Makefile.m4,v 1.14 1999/11/22 00:17:09 mdw Exp $ ## ## Makefile for Catacomb ## @@ -29,11 +29,9 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.m4,v $ -## Revision 1.13 1999/11/21 13:06:48 mdw -## Version bump. -## -## Revision 1.13 1999/11/21 13:06:48 mdw -## Version bump. +## 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. @@ -213,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', `)') @@ -234,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!) --- -- 2.11.0