mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
442 B
19 lines
442 B
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 ${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 $(SCMFILES)
|
|
|