This file is indexed.

/usr/share/globus/aclocal/doxygen_Makefile.am is in globus-core 8.16-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
include $(top_srcdir)/globus_automake_pre
#
# Automake rules for installing and building doxygen docs
#

doxygen_installdox = @lac_doxygen_installdox@
doc-stamp: @DOXYFILE@
	@if test ! -z "@DOXYGEN@"; then \
		@DOXYGEN@  @DOXYFILE@;  \
		if test -n "$(doxygen_installdox)"; then \
		    if test -x ./doc/html/installdox; then \
		        $(PERL) ./doc/html/installdox $(doxygen_installdox) ./doc/html/*;\
		    fi ; \
		fi ; \
		if test -d doc/latex; then \
		    (cd doc/latex ; for f in *.tex ; do sed 's/\\doxyref{p\.}/\\doxyref{}{p\.}/g' $$f > $$f.new ; mv $$f.new $$f ; done ; sed 's/\(latex_count\)=[0-9] /\1=10 /' Makefile > Makefile.new ; mv Makefile.new Makefile ; make) ; \
		fi \
	fi
	touch $@

all-local: doc-stamp

install-data-local: doc-stamp
	@if test ! -z "@DOXYGEN@"; then                     \
		for dir in `find ./doc/{html,man} -type d -print|sed "s,./doc/,,"`; do \
			if test -z "`echo $${dir}|sed -n '/^man/ p'`"; then \
				$(INSTALL) -d -m 755 \
					$(DESTDIR)$(docdir)/$${dir}; \
			else \
				$(INSTALL) -d -m 755 \
					$(DESTDIR)$(mandir)/`echo $${dir} | sed -e 's/^man//'`; \
			fi \
		done; \
		for file in `find ./doc/{html,man} -type f -print|sed "s,./doc/,,"`; do \
			if test -z "`echo $${file}|sed -n '/^man/ p'`"; then \
				$(INSTALL) -m 644 ./doc/$${file} \
					$(DESTDIR)$(docdir)/$${file}; \
			else \
				$(INSTALL) -m 644 ./doc/$${file} \
					$(DESTDIR)$(mandir)/`echo $${file} | sed -e 's/^man//'`;\
			fi \
		done; \
		if test -f doc/latex/refman.pdf; then \
			$(INSTALL) -m 644 doc/latex/refman.pdf \
				$(DESTDIR)$(docdir); \
		fi \
	fi

clean-local:
	@if test ! -z "@DOXYGEN@"; then \
		rm -rf ./doc*;          \
	fi
	rm -f doc-stamp

filelist: doc-stamp
	@if test ! -z "@DOXYGEN@"; then \
                filelistdir="`echo $(FILELIST_FILE) | sed -e 's!/[^/]*$$!!'`"; \
		find ./doc/{man,html} -type f -print | \
		sed -e 's,./doc/man,$(mandir),' \
                    -e 's,./doc,$(docdir),' \
                    -e 's,^$(prefix),,' \
		>> $${filelistdir}/noflavor_doc.filelist; \
		if test -f doc/latex/refman.pdf; then \
			echo $(docdir)/refman.pdf | sed 's,^$(prefix),,' \
			>> $${filelistdir}/noflavor_doc.filelist; \
		fi \
	fi

dist-hook: doc-stamp
	@if test ! -z "@DOXYGEN@"; then \
		if test -d doc; then \
		    cp -r doc $(distdir)/doc ; \
		fi ; \
		if test -d doc-internal; then \
		    cp -r doc-internal $(distdir)/doc-internal ; \
		fi ; \
	fi ;

include $(top_srcdir)/globus_automake_post