This file is indexed.

/usr/share/doc/libdotconf-dev/examples/noinline/Makefile is in libdotconf-dev 1.3-0.2.

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
TARGET=noinline
OBJS=noinline.o


#######################
CFLAGS=-Wall -O2
LDFLAGS=
LIBS=-ldotconf
CC=gcc

%.o: %.c
	$(CC) $(CFLAGS) -o $@ -c $<

all: $(TARGET)

$(TARGET): $(OBJS)
	$(CC) -o $@ $< $(LDFLAGS) $(LIBS)

clean:
	rm -f $(OBJS) $(TARGET)