This file is indexed.

/usr/lib/clisp-2.49/wildcard/Makefile is in clisp-module-wildcard 1:2.49-9ubuntu1.

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
# Makefile for CLISP module set wildcard

srcdir = /build/buildd/clisp-2.49/modules/wildcard
CC = gcc
CPPFLAGS = 
CFLAGS = -falign-functions=4
CLISP = /build/buildd/clisp-2.49/debian/build/clisp -K boot  -E UTF-8 -Epathname 1:1 -Emisc 1:1 -norc -norc -q
CLISP_LIBDIR = /build/buildd/clisp-2.49/debian/build/
CLISP_LINKKIT = /build/buildd/clisp-2.49/debian/build/linkkit

LN = ln

MAKE = make

SHELL = /bin/sh

GENERATED = wildcard.o wildcard.fas libgnu_wc.a
DISTRIBFILES = link.sh Makefile $(GENERATED) \
	$(srcdir)/README $(srcdir)/wildcard.lisp
distribdir =

# default target: make the module
clisp-module : $(GENERATED)

.PHONY : am--refresh clisp-module clisp-module-distrib clean distclean force

wildcard.c wildcard.fas : $(srcdir)/wildcard.lisp
	$(CLISP) -c $(srcdir)/wildcard.lisp -o ./

wildcard.o : wildcard.c config.h gllib
	$(CC) $(CPPFLAGS) $(CFLAGS) -I$(CLISP_LINKKIT) \
		-Igllib -I$(srcdir)/gllib -c wildcard.c

am--refresh :

# wildcard relies on src/gllib, so we must also include files in the build dir
gllib libgnu_wc.a : force
	rm -f libgnu_wc.a
	mkdir -p gllib
	test -f gllib/Makefile || sh config.status gllib/Makefile depfiles
	cd gllib; \
	  $(MAKE) srcdir="$(srcdir)/gllib" \
		ACLOCAL_M4="$(srcdir)/gllib/Makefile.am" \
		CFLAGS="$(CFLAGS) -I$(CLISP_LIBDIR)"; \
	  $(LN) libgnu.a ../libgnu_wc.a

# Make a module distribution into $(distribdir)
clisp-module-distrib : clisp-module force
	$(LN) $(DISTRIBFILES) $(distribdir)

clean : force
	rm -f core *.o *.a *.fas *.lib

distclean : clean

force :