This file is indexed.

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

srcdir = /build/buildd/clisp-2.49/modules/rawsock
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_LINKKIT = /build/buildd/clisp-2.49/debian/build/linkkit

LN = ln
LN_S = ln -s

MAKE = make

SHELL = /bin/sh

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

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

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

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

rawsock.m.c : $(srcdir)/rawsock.c
	$(CLISP) -C $(CLISP_LINKKIT)/modprep $(srcdir)/rawsock.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)
	mkdir -p $(distribdir)/demos
	$(LN) $(srcdir)/demos/*.lisp $(srcdir)/demos/README $(distribdir)/demos/

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

distclean : clean

force :