This file is indexed.

/usr/share/xemacs21/mule-packages/lisp/edict/Makefile.GNU is in xemacs21-mulesupport 2009.02.17.dfsg.2-1.

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
# Makefile.FSF

# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2, or (at your option) any
# later version.

# It is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.

# You should have received a copy of the GNU General Public License
# along with it; see the file COPYING.  If not, write to
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

# Makefile to bytecompile edict.el sources under FSF Emacs and build a
# tarball that can be untarred somewhere on the load-path.

# The recommended location is .../emacs/site-lisp/edict, and the
# default location for the dictionary is there also.

AUTHOR_VERSION = 0.9.8
MAINTAINER = Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp>

# edict-autoloads.el is automatically generated using XEmacs.  It is
# therefore not guaranteed to be 100% up-to-date, but probably is.
# It can be loaded from your .emacs.

ETC = edict-test.el.096 edict.el.096 edict.doc.096 README.096 \
      Makefile.096 install.edict.096 README ChangeLog TODO COPYING

EXTRA_SOURCES = edictj.demo ts-mode.el auto-autoloads.el Makefile

ELCS = edict.elc dui.elc edict-morphology.elc edict-japanese.elc \
       edict-english.elc edict-edit.elc edict-test.elc dui-registry.elc

# path to Emacs
EMACS = emacs

# Emacs without any site or user customizations
VANILLA = --no-init-file --no-site-file

BATCH = $(VANILLA) -batch -eval '(setq stack-trace-on-error t)'

# path to utilities
TAR = tar

# nothing below this line should be changed

.phony: tar

%.elc: %.el
	$(EMACS) $(BATCH) \
		 --eval "(setq load-path (cons \".\" load-path))" \
		 -f batch-byte-compile $<

all:: $(ELCS)

clean::
	rm -f $(ELCS)

mostlyclean: clean

extraclean: clean

distclean: extraclean
	rm -f core *~

tar:
	if [ -e Makefile.FSF ]; then \
         mv Makefile Makefile.XEmacs; \
	 cp Makefile.FSF Makefile; \
        fi
	$(TAR) cvf edict-$(AUTHOR_VERSION)-fsf.tar \
	           $(ELCS:.elc=.el) $(ETC) $(EXTRA_SOURCES)
	gzip -9 edict-$(AUTHOR_VERSION)-fsf.tar
	if [ -e Makefile.XEmacs ]; then mv Makefile.XEmacs Makefile; fi