From: Mark Wooding Date: Sat, 3 Aug 2013 10:51:37 +0000 (+0100) Subject: vars.am: Remove extra prerequisite from the `.to.t' rule. X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/commitdiff_plain/4c26bf2ba940b3a7bcb10b9a60e863c2c918efb8 vars.am: Remove extra prerequisite from the `.to.t' rule. It doesn't do what one expects. --- diff --git a/vars.am b/vars.am index a0c3a6e..b0cd53c 100644 --- a/vars.am +++ b/vars.am @@ -114,9 +114,8 @@ AM_CPPFLAGS = $(CATACOMB_INCLUDES) SUFFIXES += .c .$t .to .c.to: $(AM_V_CC)$(COMPILE) -c -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $< -o $@ -.to.$t: libcatacomb.la - $(AM_V_CCLD)$(LINK) $< \ - $(TEST_LIBS) $(top_builddir)/libcatacomb.la \ +.to.$t: + $(AM_V_CCLD)$(LINK) $< $(TEST_LIBS) $(top_builddir)/libcatacomb.la \ $(mLib_LIBS) $(CATACOMB_LIBS) $(LIBS) .PRECIOUS: %.to CLEANFILES += *.to *.$t