mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-12-02 13:39:43 -06:00
d6b618a92d
* intl-scm/Makefile.am: pass the absolute path to xgettext.scm git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13291 57a11ea4-9604-0410-9ed3-97b8803252fd
21 lines
497 B
Makefile
21 lines
497 B
Makefile
abs_top_srcdir=@abs_top_srcdir@
|
|
|
|
EXTRA_DIST = \
|
|
guile-strings.c \
|
|
xgettext.scm
|
|
|
|
# Cause automake to generate correct rules
|
|
# for maintainers
|
|
noinst_HEADERS = guile-strings.c
|
|
|
|
BUILT_SOURCES = guile-strings.c
|
|
|
|
SCMFILES = $(shell find ${abs_top_srcdir}/src -name test -prune -o -name '*.scm' -print )
|
|
|
|
# This needs to be generated in srcdir
|
|
guile-strings.c: $(SCMFILES)
|
|
rm -f guile-strings.c
|
|
cd ${srcdir} && rm -f guile-strings.c \
|
|
&& ${GUILE} -s ./xgettext.scm ${abs_top_srcdir} $(SCMFILES)
|
|
|