1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

* standalone/Makefile.am: change from .c.x to .x to be consistent

with the rest of guile.
This commit is contained in:
Rob Browning 2003-04-14 15:55:18 +00:00
parent 94e9127567
commit 8f9ae7fd52

View file

@ -14,10 +14,10 @@ test_cflags := \
-I$(top_srcdir)/libguile-ltdl -I$(top_srcdir)/libguile-ltdl
snarfcppopts = $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(CFLAGS) snarfcppopts = $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(CFLAGS)
%.c.x: %.c %.x: %.c
${top_builddir}/libguile/guile-snarf -o $@ $< $(snarfcppopts) ${top_builddir}/libguile/guile-snarf -o $@ $< $(snarfcppopts)
CLEANFILES = *.c.x CLEANFILES = *.x
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
@ -37,11 +37,11 @@ TESTS += test-gh
# test-asmobs # test-asmobs
noinst_LTLIBRARIES += libtest-asmobs.la noinst_LTLIBRARIES += libtest-asmobs.la
libtest_asmobs_la_SOURCES = test-asmobs-lib.c test-asmobs-lib.c.x libtest_asmobs_la_SOURCES = test-asmobs-lib.c test-asmobs-lib.x
libtest_asmobs_la_CFLAGS = ${test_cflags} libtest_asmobs_la_CFLAGS = ${test_cflags}
libtest_asmobs_la_LDFLAGS = -rpath `pwd` # so libtool will really build an .so libtest_asmobs_la_LDFLAGS = -rpath `pwd` # so libtool will really build an .so
libtest_asmobs_la_LIBADD = ${top_builddir}/libguile/libguile.la libtest_asmobs_la_LIBADD = ${top_builddir}/libguile/libguile.la
BUILT_SOURCES += test-asmobs-lib.c.x BUILT_SOURCES += test-asmobs-lib.x
check_SCRIPTS += test-asmobs check_SCRIPTS += test-asmobs
TESTS += test-asmobs TESTS += test-asmobs