12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- # Makefile.am --- GNU Automake file to build guile modules
- # Copyright (C) 2016 Alex Kost <alezost@gmail.com>
- # This file is part of Guile-XOSD.
- # Guile-XOSD is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # Guile-XOSD is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with Guile-XOSD. If not, see <http://www.gnu.org/licenses/>.
- xosd-procedures.txt: $(top_srcdir)/doc/procedures.texi
- $(GUILE) --no-auto-compile \
- "$(top_srcdir)/build-aux/texi-to-docstrings.scm" \
- "$<" > $@
- MODULES = \
- xosd/bindings.scm \
- xosd.scm
- CONFIG_SCM = xosd/config.scm
- CONFIG_GO = $(CONFIG_SCM:%.scm=%.go)
- GO_FILES = $(CONFIG_GO) $(MODULES:%.scm=%.go)
- $(GO_FILES): $(abs_top_builddir)/src/libguile-xosd.la
- nobase_dist_guilemodule_DATA = $(MODULES)
- nobase_nodist_guilemodule_DATA = $(CONFIG_SCM) xosd-procedures.txt
- nobase_nodist_guileccache_DATA = $(GO_FILES)
- # 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>.
- guile_xosd_install_go_files = install-nobase_nodist_guileccacheDATA
- $(guile_xosd_install_go_files): install-nobase_dist_guilemoduleDATA
- $(guile_xosd_install_go_files): install-nobase_nodist_guilemoduleDATA
- # Add both srcdir and builddir to GUILE_LOAD_PATH because the generated
- # "config.scm" file is placed in the builddir.
- GUILEC_ENV = \
- GUILE_AUTO_COMPILE=0 \
- GUILE_LOAD_PATH="$(abs_srcdir):$(abs_builddir)" \
- GUILE_LOAD_COMPILED_PATH="$(abs_builddir)" \
- GUILE_XOSD_LIBDIR="$(abs_top_builddir)/src/.libs"
- GUILEC_OPTS = \
- --target=$(host) \
- -Warity-mismatch \
- -Wformat \
- -Wunbound-variable \
- -Wunused-variable
- $(GO_FILES): %.go: %.scm
- $(GUILEC_ENV) $(GUILD) compile $(GUILEC_OPTS) --output=$@ $<
- CLEANFILES = $(GO_FILES)
- clean-go:
- -$(RM) -f $(GO_FILES)
- .PHONY: clean-go
- # Makefile.am ends here
|