This file is indexed.

/usr/lib/clisp-2.49/dbus/Makefile is in clisp-module-dbus 1:2.49-8.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
# Makefile for CLISP module set dbus

srcdir = /build/buildd/clisp-2.49/modules/dbus
CC = gcc
CPPFLAGS = -D_FORTIFY_SOURCE=2
CFLAGS = -falign-functions=4
# defined by PKG_CHECK_MODULES
DBUS_CFLAGS = -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include  
DBUS_LIBS = -ldbus-1 -lpthread -lrt  

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

MAKE = make

SHELL = /bin/sh

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

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

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

dbus.o : dbus.c config.h
	$(CC) $(CPPFLAGS) $(CFLAGS) -I$(CLISP_LINKKIT) $(DBUS_CFLAGS) -c dbus.c

# 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 :