mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 03:30:27 +02:00
* am/guilec (.scm.go): Use `pre-inst-guile' and load `stack-limit-calibration.scm'. This is particularly useful when building the first `.go' files where the compiler is run using the interpreter, which may end up using a lot of stack space. * libguile/Makefile.am (BUILT_SOURCES): Add `stack-limit-calibration.scm'. (TESTS, TESTS_ENVIRONMENT): Remove. (stack-limit-calibration.scm): Prepend `-' so that any errors during the calibration are ignored.
15 lines
441 B
Makefile
15 lines
441 B
Makefile
# -*- makefile -*-
|
|
GOBJECTS = $(SOURCES:%.scm=%.go)
|
|
|
|
moddir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)/$(modpath)
|
|
nobase_mod_DATA = $(SOURCES) $(NOCOMP_SOURCES) $(GOBJECTS)
|
|
EXTRA_DIST = $(SOURCES) $(NOCOMP_SOURCES)
|
|
|
|
CLEANFILES = $(GOBJECTS)
|
|
|
|
SUFFIXES = .scm .go
|
|
.scm.go:
|
|
$(MKDIR_P) `dirname $@`
|
|
$(top_builddir)/pre-inst-guile \
|
|
-l $(top_builddir)/libguile/stack-limit-calibration.scm \
|
|
$(top_srcdir)/scripts/compile -o "$@" "$<"
|