This file is indexed.

/usr/share/doc/libaria-dev/examples/advanced/Makefile is in libaria-dev 2.8.0+repack-1.

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
# A simple $(MAKE)file to cause make to go look in the top directory. A simple
# convenience.

%.so: %.cpp 
	$(MAKE) -C .. advanced/$@

%: %.cpp 
	$(MAKE) -C .. advanced/$@

all:
	$(MAKE) -C .. advanced

clean:
	$(MAKE) -C .. cleanAdvanced

# netAudioAndSpeech needs extra libraries:

ifndef CXX
CXX=g++
endif

netAudioAndSpeech: netAudioAndSpeech.cpp ../lib/libArNetAudio.so ../lib/libArNetworking.so ../lib/libArSpeechSynth_Cepstral.so ../lib/libAria.so
	$(CXX) $(CFLAGS) -o $@ -I../include -I../ArNetworking/include -I../ArNetAudio/include -I../ArSpeechSynth_Cepstral/include $< -L../lib -lArNetAudio -lArNetworking -lArSpeechSynth_Cepstral -lAria -lswift -lspeex -lportaudio -lportmixer


# Make dependent libraries. Assumes that lib is in sibling directory with
# matching name.
../lib/lib%.so: ../%/src/*.cpp ../%/include/*.h
	$(MAKE) -C ../$* $@

../lib/libAria.so:
	$(MAKE) -C .. lib/libAria.so