From 2c70341b7074c0a5722f2650919c1cb21b9b280d Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Sat, 2 Dec 2006 23:07:43 +0000 Subject: [PATCH] (.x): Change from %.c %.x style to .c.x style since the former is a GNU make extension. (Rule now as per libguile/Makefile.am.) --- test-suite/standalone/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test-suite/standalone/Makefile.am b/test-suite/standalone/Makefile.am index ec6481029..b8a554c26 100644 --- a/test-suite/standalone/Makefile.am +++ b/test-suite/standalone/Makefile.am @@ -38,7 +38,8 @@ AM_LDFLAGS = $(GUILE_CFLAGS) snarfcppopts = \ $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(CFLAGS) -I$(top_srcdir) -%.x: %.c +SUFFIXES = .x +.c.x: ${top_builddir}/libguile/guile-snarf -o $@ $< $(snarfcppopts) CLEANFILES = *.x