This file is indexed.

/usr/share/doc/cdrdao/examples/psxcopy-0.2/Makefile is in cdrdao 1:1.2.3-4.

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
33
34
#
# Makefile - Fabio Baracca
#

CC = gcc 
#-DDEBUG #-ggdb
CFLAGS = -O2 -s -fno-strength-reduce
LDFLAGS = 
CNTFLGS =
EDITOR = joe

default: cdjob psxdump remainder

cdjob: cdjob.c
	$(CC) $(CFLAGS) cdjob.c -o cdjob

psxdump: psxdump.c
	$(CC) $(CFLAGS) psxdump.c -o psxdump

remainder:
	@echo "Make completed."
	@echo "Please also execute make batchconf to revise configuration of batch files."

batchconf:
	$(EDITOR) write-psx
	$(EDITOR) read-psx

clean:
	rm -f *~
	rm -f *.o

distclean:
	rm -f psxdump
	rm -f cdjob