This file is indexed.

/usr/lib/grass70/include/Make/Vars.make is in grass-dev 7.0.3-1build1.

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
include $(MODULE_TOPDIR)/include/Make/Platform.make
include $(MODULE_TOPDIR)/include/Make/Grass.make

ifndef BROKEN_MAKE
ifneq ($(MAKE_VERSION),3.81)
BROKEN_MAKE=1
endif
endif

C_SOURCES    := $(wildcard *.c)
CPP_SOURCES  := $(wildcard *.cpp)
LEX_SOURCES  := $(wildcard *.l)
YACC_SOURCES := $(wildcard *.y)

AUTO_OBJS := \
	$(subst .c,.o,$(C_SOURCES)) \
	$(subst .cpp,.o,$(CPP_SOURCES)) \
	$(subst .l,.yy.o,$(LEX_SOURCES)) \
	$(subst .y,.tab.o,$(YACC_SOURCES))

ifndef MOD_OBJS
MOD_OBJS = $(AUTO_OBJS)
endif

ARCH_OBJS = $(patsubst %.o,$(OBJDIR)/%.o,$(MOD_OBJS))

LOCAL_HEADERS := $(wildcard *.h)

LINK = $(CC)