This file is indexed.

/usr/bin/givaro-makefile is in libgivaro-dev 4.0.2-5.

This file is owned by root:root, with mode 0o755.

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
#!/usr/bin/make -f
# Copyright(c)'1994-2009 by The Givaro group
# This file is part of Givaro.
# Givaro is governed by the CeCILL-B license under French law
# and abiding by the rules of distribution of free software. 
# see the COPYRIGHT file for more details.


prefix=/usr
exec_prefix=${prefix}
includedir=${prefix}/include
libdir=/usr/lib/x86_64-linux-gnu

CXX = g++
AR  = ar

OPTFLAGS =  -g -O2 -fdebug-prefix-map=/build/givaro-ZDudKJ/givaro-4.0.2=. -fstack-protector-strong -Wformat -Werror=format-security   -fabi-version=6
GMP_CFLAGS = 
GMP_LIBS   =  -lgmpxx -lgmp

GIVARO_CXXFLAGS = -I${includedir}
GIVARO_LIBDIR = -L${libdir}
GIVARO_LIBS = -lgivaro 

CXXFLAGS += ${OPTFLAGS} 

CXXFLAGS += ${GIVARO_CXXFLAGS} ${GMP_CFLAGS}
LDFLAGS += ${GIVARO_LIBDIR} ${GMP_LIBDIR}
LOADLIBES += ${GIVARO_LIBS} ${GMP_LIBS}

.SUFFIXES: .o .C .cpp

.C.o:
	${CXX} ${CXXFLAGS} -o $@ -c $<  

.cpp.o:
	${CXX} ${CXXFLAGS} -o $@ -c $<  

.C:
	${CXX} ${CXXFLAGS} $(LDFLAGS) -o $@ $<  $(LOADLIBES) $(LDLIBS)

.cpp:
	${CXX} ${CXXFLAGS} $(LDFLAGS) -o $@ $<  $(LOADLIBES) $(LDLIBS)