This file is indexed.

/usr/lib/clisp-2.49/pcre/Makefile is in clisp-module-pcre 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
# Makefile for CLISP module set pcre

srcdir = /build/buildd/clisp-2.49/modules/pcre
CC = gcc
PCRECPPFLAGS = 
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_LINKKIT = /build/buildd/clisp-2.49/debian/build/linkkit

LN = ln
LN_S = ln -s

MAKE = make

SHELL = /bin/sh

GENERATED = pcre.fas cpcre.o preload.lisp
DISTRIBFILES = link.sh Makefile $(GENERATED) $(srcdir)/pcre.lisp
distribdir =

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

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

cpcre.o : cpcre.m.c config.h
	$(CC) $(CPPFLAGS) $(PCRECPPFLAGS) $(CFLAGS) -I$(CLISP_LINKKIT) \
		-c cpcre.m.c -o cpcre.o

cpcre.m.c : $(srcdir)/cpcre.c
	$(CLISP) -C $(CLISP_LINKKIT)/modprep $(srcdir)/cpcre.c ./

preload.lisp : $(srcdir)/preload.lisp
	$(LN_S) $(srcdir)/preload.lisp .

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

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

distclean : clean

force :