mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 20:30:28 +02:00
* libguile/measure-hwm.scm: Remove. * .gitignore: Update for removal. * test-suite/standalone/test-fast-slot-ref.in: * test-suite/standalone/test-use-srfi.in: * am/guilec: * check-guile.in: Revert back to normal guile invocation. * libguile/Makefile.am: Don't make a stack calibration file, as the getrlimit-based limit setting should work fine.
13 lines
367 B
Makefile
13 lines
367 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)/meta/uninstalled-env guile-tools compile -o "$@" "$<"
|