1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

* Makefile.am (ice-9/readline.scm): new target -- so readline will

work from the source tree when guile-readline is added to
GUILE_LOAD_PATH.
(all-local): add ice-9/readline.scm.
(clean-local): remove ice-9/readline at clean time.
This commit is contained in:
Rob Browning 2003-03-19 23:46:19 +00:00
parent 25e0bf97cf
commit d56a98c76b

View file

@ -57,6 +57,18 @@ MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
CLEANFILES = *.x CLEANFILES = *.x
ice-9/readline.scm:
-rm ice-9/readline.scm
-rmdir ice-9
mkdir ice-9
cd ice-9 && ln -s ../readline.scm
all-local: ice-9/readline.scm
clean-local:
rm -f ice-9/readline.scm
-rmdir ice-9
dist-hook: dist-hook:
(temp="/tmp/mangle-deps.$$$$"; \ (temp="/tmp/mangle-deps.$$$$"; \
trap "rm -f $$temp" 0 1 2 15; \ trap "rm -f $$temp" 0 1 2 15; \