This file is indexed.

/usr/share/doc/gammu/examples/Makefile is in gammu 1.33.0-3.

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
# Path to directory, where is gammu built
GAMMU_BUILD=../../../build-configure/

CFLAGS=$(shell PKG_CONFIG_PATH=$(GAMMU_BUILD)/pkgconfig pkg-config --cflags --libs gammu-smsd) $(shell PKG_CONFIG_PATH=$(GAMMU_BUILD)/pkgconfig pkg-config --cflags --libs gammu) -Wall

ALL=phone-info sms-send smsd

.PHONY: all clean

all: $(ALL)

clean: 
	rm -f $(ALL)

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