1 ## Usually using anything, but sh is not recommended, but since this
2 ## software requires presence of GNU Bash, we can take advantage of
5 ## Autocompile is not needed and makes debian `sbuild` sad,
6 ## since during clean build HOME is absent.
7 export GUILE_AUTO_COMPILE=0
8 ACLOCAL_AMFLAGS = -I m4
9 AM_CFLAGS = @GUILE_CFLAGS@
10 lib_LTLIBRARIES = libguile-bash.la
11 libguile_bash_la_SOURCES = src/scm.c
12 libguile_bash_la_LDFLAGS = -module
13 libguile_bash_la_LIBADD = @GUILE_LDFLAGS@
18 TESTS += tests/trivial.scm
19 TESTS += tests/alias.bash
20 TESTS += tests/exception.bash
21 XFAIL_TESTS += tests/exception.bash
22 TESTS += tests/capture-output.bash
23 TESTS += tests/variable.bash
24 TESTS += tests/command.bash
25 TESTS += tests/dynamic-var.bash
26 maintainer-clean-local:
28 for file in $(TESTS) ; do \
29 wo_bash_suffix=$${file%%.bash} ; \
30 wo_suffix=$${wo_bash_suffix%%.scm} ; \
31 rm -f $${wo_suffix}.scm.log ; \