29 lines
849 B
Plaintext
29 lines
849 B
Plaintext
|
include $(top_srcdir)/build-aux/am/guilec
|
||
|
|
||
|
GOBJECTS = $(SOURCES:%.scm=%.go)
|
||
|
|
||
|
nobase_mod_DATA = $(SOURCES) $(NOCOMP_SOURCES)
|
||
|
nobase_go_DATA = $(GOBJECTS)
|
||
|
|
||
|
# Make sure source files are installed first, so that the mtime of
|
||
|
# installed compiled files is greater than that of installed source
|
||
|
# files. See
|
||
|
# <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
|
||
|
# for details.
|
||
|
guile_install_go_files = install-nobase_goDATA
|
||
|
$(guile_install_go_files): install-nobase_modDATA
|
||
|
|
||
|
CLEANFILES = $(GOBJECTS)
|
||
|
EXTRA_DIST = $(SOURCES) $(NOCOMP_SOURCES)
|
||
|
GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat
|
||
|
|
||
|
guilec_env = GUILE_AUTO_COMPILE=0
|
||
|
guilec_opts = -L $(abs_top_builddir)/src/ -L $(abs_top_srcdir)/src/
|
||
|
.scm.go:
|
||
|
$(AM_V_GUILEC)$(guilec_env) $(GUILEC) $(guilec_opts) \
|
||
|
--output=$@ $<
|
||
|
|
||
|
clean-go:
|
||
|
-$(RM) $(GOBJECTS)
|
||
|
.PHONY: clean-go
|