* intl-scm/Makefile.am: applied John's patch to build guile-strings.c

properly.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7796 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2003-01-07 05:04:43 +00:00
parent d5e516ebd8
commit 39be7af0f5
2 changed files with 9 additions and 5 deletions

View File

@ -4,6 +4,9 @@
* src/engine/test/test-scm-query-import.scm: add a warning message
about potential "error" output which can be ignored.
* intl-scm/Makefile.am: applied John's patch to build guile-strings.c
properly.
2003-01-05 Chris Lyttle <chris@wilddev.net>

View File

@ -7,12 +7,13 @@ EXTRA_DIST = \
# for maintainers
noinst_HEADERS = guile-strings.c
BUILT_SOURCES = ${srcdir}/guile-strings.c
BUILT_SOURCES = guile-strings.c
SCMFILES = $(shell find ${top_srcdir} -name '*\.scm' | egrep -v "/${top_buildir}/" )
SCMFILES = $(shell find ${top_srcdir}/src -name test -prune -o -name '*.scm' -print )
# This needs to be generated in srcdir
${srcdir}/guile-strings.c: $(SCMFILES)
cd ${srcdir} && rm -f guile-strings.c && \
guile -s ./xgettext.scm $(SCMFILES)
guile-strings.c: $(SCMFILES)
rm -f guile-strings.c
cd ${srcdir} && rm -f guile-strings.c \
&& ${GUILE} -s ./xgettext.scm $(SCMFILES)