This file is indexed.

/usr/share/emacs/site-lisp/mailcrypt/Makefile.in is in mailcrypt 3.5.9-7.

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
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
## This is a -*- makefile -*-

# What the Emacs binary is called on your system
EMACS = @EMACS@
EMACSFLAGS = @EMACSFLAGS@

# Prefix for constructing installation directory paths
prefix = @prefix@
exec_prefix = @exec_prefix@

# Shared directory for read-only data files
datadir = $(prefix)/share

# Where to put the .el and .elc files
lispdir = $(datadir)/emacs/site-lisp

# Where to put the Info files
infodir = @infodir@
#INFOFILES = mailcrypt.info mailcrypt.info-1 mailcrypt.info-2
INFOFILES = mailcrypt.info

# Installation command
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_INFO = @INSTALL_INFO@
MKINSTALLDIRS = $(srcdir)/mkinstalldirs

# Various auxiliary programs
MAKEINFO=makeinfo
DVIPS=dvips
TEXI2DVI=texi2dvi
TEXI2HTML=texi2html
TAR=tar

srcdir = @srcdir@
VPATH = @srcdir@

SOURCES = @EXTRA_SRCS@ \
	mailcrypt.el mc-toplev.el mc-pgp.el mc-remail.el \
	mc-pgp5.el mc-pgp6.el mc-gpg.el expect.el mc-setversion.el

OBJECTS = @EXTRA_OBJS@ \
	mailcrypt.elc mc-toplev.elc mc-pgp.elc mc-remail.elc \
	mc-pgp5.elc mc-pgp6.elc mc-gpg.elc expect.elc mc-setversion.elc

GPG_TESTCASES = $(foreach f,CS.s1v CS.s3v E.e1r E.e3 ES.e1r.s1v ES.e1r.s3v \
		  ES.e3.s1v S.s1v S.s3v CS.s2v CS.s4 E.e2r E.e4 ES.e1r.s2v \
		  ES.e1r.s4 ES.e4.s1v S.s2v S.s4 SE,tests/gpg-testcases/$(f))

TESTFILES_GPG = tests/Makefile.in					      \
	tests/make_gpg_testcases.py tests/test-gpg.el tests/gpg-keys/Makefile \
	tests/gpg-keys/fix-trust.py tests/gpg-keys/make-rings.py	      \
	tests/gpg-keys/rings.txt $(GPG_TESTCASES)
TESTFILES_REMAILER = tests/remailer/Makefile.in tests/remailer/rings.txt \
	tests/remailer/rlist.txt tests/remailer/test-remailer.el	 \
	tests/remailer/unwind.py

DISTFILES = $(SOURCES) ANNOUNCE COPYING ChangeLog ChangeLog.1 INSTALL	     \
	LCD-entry Makefile.in NEWS ONEWS README configure configure.ac	     \
	install-sh load-path.hack mailcrypt.texi mkinstalldirs texi2html.ext \
	FSF-timer.el $(INFOFILES) mailcrypt.dvi README.gpg $(TESTFILES_GPG)  \
	$(TESTFILES_REMAILER)

SHELL = /bin/sh
#.PHONY: all clean dist distclean dvi html info install \
#	installdirs ps uninstall
.SUFFIXES:
.SUFFIXES: .elc .el

.el.elc:
	$(EMACS) -batch $(EMACSFLAGS) -l $(srcdir)/load-path.hack \
	  -f batch-byte-compile $<

all: $(OBJECTS)

check: $(OBJECTS)
	$(MAKE) -C tests check

install: install-lisp install-info

install-lisp: all
	-$(MKINSTALLDIRS) $(lispdir)
	for f in $(SOURCES); do \
	  $(INSTALL_DATA) $(srcdir)/$$f $(lispdir); \
	done;
	for f in $(OBJECTS); do \
	  $(INSTALL_DATA) $$f $(lispdir); \
	done;

# Make sure all installation directories actually exist
# by making them if necessary.
installdirs: mkinstalldirs
	$(srcdir)/mkinstalldirs $(lispdir) $(infodir)

# If your install-info doesn't know how to look inside the .info file for the
# menu entry to add, try adding
#   --entry="* Mailcrypt: (mailcrypt).       An Emacs/PGP interface"
# to the arguments.

install-info: info
	-$(MKINSTALLDIRS) $(infodir)
	cd $(srcdir) && for file in $(INFOFILES); do\
	  $(INSTALL_DATA) $$file $(infodir)/$$file; \
	done
	-$(INSTALL_INFO) --info-dir=$(infodir) mailcrypt.info

uninstall:
	-cd $(lispdir) && rm -f $(SOURCES) $(OBJECTS)
	-cd $(infodir) && rm -f $(INFOFILES)
	$(INSTALL_INFO) --remove --info-dir=$(infodir) mailcrypt.info

info: $(INFOFILES)

$(INFOFILES): mailcrypt.texi
	$(MAKEINFO) $(srcdir)/mailcrypt.texi

timer.el: FSF-timer.el
	cp FSF-timer.el timer.el

dvi: mailcrypt.dvi

mailcrypt.dvi: mailcrypt.texi
	$(TEXI2DVI) $(srcdir)/mailcrypt.texi

ps: mailcrypt.ps

mailcrypt.ps: mailcrypt.dvi
	$(DVIPS) -f $(srcdir)/mailcrypt.dvi >$@

html: mailcrypt_toc.html

mailcrypt_toc.html: mailcrypt.texi
	$(TEXI2HTML) --output=htmls --split_chapter $(srcdir)/mailcrypt.texi

TAGS: $(SOURCES)
	cd $(srcdir) && etags $(SOURCES)

clean:
	rm -f $(OBJECTS)
	-rm -f *.aux *.cp *.cps *.fn *.ky *.log *.pg *.toc *.tp *.vr
	-rm -f *.html
	-rm -rf htmls/
	rm -f TAGS

distclean: clean
	-rm -f *~ *.tar.gz
	-rm -f Makefile config.status config.cache config.log timer.el
	-rm -f tests/Makefile tests/remailer/Makefile
	-rm -rf autom4te.cache
	-rm -f *.info* *.dvi

${srcdir}/configure: configure.ac
	cd ${srcdir} && autoconf

Makefile: Makefile.in config.status
	./config.status

config.status: ${srcdir}/configure
	./config.status --recheck

dist: $(DISTFILES)
	version=`perl -ne 'print $$1 if /defconst mc-version \"(.*)\"/' \
		 mailcrypt.el`; \
	distname=mailcrypt-$$version; \
	rm -rf $$distname; \
	mkdir $$distname; \
	mkdir $$distname/tests; mkdir $$distname/tests/gpg-keys; \
	mkdir $$distname/tests/gpg-testcases; \
	mkdir $$distname/tests/remailer; \
	for file in $(DISTFILES); do \
	  ln $$file $$distname/$$file; \
	done; \
	$(TAR) -chz -f $$distname.tar.gz $$distname; \
	rm -rf $$distname