Force `auto-macros.texi' to be created in $(srcdir), as, otherwise,

Tue Jun 15 15:59:50 1999 Timur Bakeyev <mc@bat.ru>

	* Makefile.am: Force `auto-macros.texi' to be created in $(srcdir),
	as, otherwise, makeinfo is unable to find it, if srcdir != builddir.
	That's a buggy solution, as spoils srcdir, but, as libgtop.info also
	created in srcdir - this is acceptable. Both SHOULD be fixed!
This commit is contained in:
Timur Bakeyev
1999-06-15 14:03:38 +00:00
committed by Timur I. Bakeyev
parent cad4a8da0d
commit b8cdd9e090
2 changed files with 12 additions and 5 deletions

View File

@@ -1,3 +1,10 @@
Tue Jun 15 15:59:50 1999 Timur Bakeyev <mc@bat.ru>
* Makefile.am: Force `auto-macros.texi' to be created in $(srcdir),
as, otherwise, makeinfo is unable to find it, if srcdir != builddir.
That's a buggy solution, as spoils srcdir, but, as libgtop.info also
created in srcdir - this is acceptable. Both SHOULD be fixed!
1999-05-28 Martin Baulig <baulig@Stud.Informatik.Uni-Trier.DE> 1999-05-28 Martin Baulig <baulig@Stud.Informatik.Uni-Trier.DE>
* internals.texi: New file documenting LibGTop internals. * internals.texi: New file documenting LibGTop internals.

View File

@@ -33,11 +33,11 @@ auto-macros.texi: auto-macros.texi.in Makefile
-e 's#\%libgtop_use_machine_h\%#$(libgtop_use_machine_h)#g' \ -e 's#\%libgtop_use_machine_h\%#$(libgtop_use_machine_h)#g' \
-e 's#\%libgtop_guile_found\%#$(libgtop_guile_found)#g' \ -e 's#\%libgtop_guile_found\%#$(libgtop_guile_found)#g' \
-e 's#\%libgtop_want_examples\%#$(libgtop_want_examples)#g' \ -e 's#\%libgtop_want_examples\%#$(libgtop_want_examples)#g' \
< $(srcdir)/auto-macros.texi.in > auto-macros.tmp < $(srcdir)/auto-macros.texi.in > $(srcdir)/auto-macros.tmp
echo '@c Set this if this is LibGTop 1.1.x' >> auto-macros.tmp echo '@c Set this if this is LibGTop 1.1.x' >> $(srcdir)/auto-macros.tmp
if [ $(LIBGTOP_VERSION_CODE) -ge 1001000 ] ; then \ if [ $(LIBGTOP_VERSION_CODE) -ge 1001000 ] ; then \
echo '@set LIBGTOP-1-1' >> auto-macros.tmp ; \ echo '@set LIBGTOP-1-1' >> $(srcdir)/auto-macros.tmp ; \
else \ else \
echo '@clear LIBGTOP-1-1' >> auto-macros.tmp ; \ echo '@clear LIBGTOP-1-1' >> $(srcdir)/auto-macros.tmp ; \
fi fi
mv auto-macros.tmp auto-macros.texi mv $(srcdir)/auto-macros.tmp $(srcdir)/auto-macros.texi