diff options
author | dfranke <dfranke@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-21 22:29:08 +0000 |
---|---|---|
committer | dfranke <dfranke@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-21 22:29:08 +0000 |
commit | 0ed6d01267b2aa1508dec3ed1bbfb67ad3f4dcba (patch) | |
tree | 431fe1679a89a4f2c4ce0e099c1c53dd39131c0d /libgomp/Makefile.am | |
parent | c8aaf000d90103d91d3314584c569bc0eb74467a (diff) | |
download | gcc-0ed6d01267b2aa1508dec3ed1bbfb67ad3f4dcba.tar.gz |
2006-12-21 Daniel Franke <franke.daniel@gmail.com>
PR libgomp/28209
* libgomp.texi: New file.
* configure.ac: Add --enable-generated-files-in-srcdir option.
* Makefile.am: Add info, dvi, pdf, html targets. On request, copy
files to srcdir.
* Makefile.in: Regenerated.
* config.h.in: Regenerated.
* testsuite/Makefile.in: Regenerated.
* NOTES: Removed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120122 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp/Makefile.am')
-rw-r--r-- | libgomp/Makefile.am | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libgomp/Makefile.am b/libgomp/Makefile.am index 6e84a4b491e..ee2669c952f 100644 --- a/libgomp/Makefile.am +++ b/libgomp/Makefile.am @@ -50,7 +50,35 @@ fortran.o: libgomp_f.h env.lo: libgomp_f.h env.o: libgomp_f.h + # No install-html target .PHONY: install-html install-html: + +# Automake Documentation: +# If your package has Texinfo files in many directories, you can use the +# variable TEXINFO_TEX to tell Automake where to find the canonical +# `texinfo.tex' for your package. The value of this variable should be +# the relative path from the current `Makefile.am' to `texinfo.tex'. +TEXINFO_TEX = ../gcc/doc/include/texinfo.tex + +# Defines info, dvi, pdf and html targets +MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include +info_TEXINFOS = libgomp.texi + +# AM_CONDITIONAL on configure option --generated-files-in-srcdir +if GENINSRC +STAMP_GENINSRC = stamp-geninsrc +else +STAMP_GENINSRC = +endif + +all-local: $(STAMP_GENINSRC) + +stamp-geninsrc: libgomp.info + -cp -p $(top_builddir)/libgomp.info $(srcdir)/libgomp.info + touch $@ + +CLEANFILES = stamp-geninsrc libgomp.info +MAINTAINERCLEANFILES = $(srcdir)/libgomp.info |