This file is indexed.

/usr/share/doc/ats-lang-anairiats-examples/examples/KernighanRitchie/Chapter07/Makefile is in ats-lang-anairiats-examples 0.2.5-0ubuntu1.

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
#
# Makefile for K&R examples in Chapter 7
#
#

######

ATSUSRQ="$(ATSHOME)"
ifeq ($(ATSUSRQ),"")
ATSUSRQ="/usr"
endif

######

ATSCC=$(ATSUSRQ)/bin/atscc
ATSOPT=$(ATSUSRQ)/bin/atsopt

######

.PHONY: all
all:: checkall
all:: cleanall

######

checkall::
cleanall:: clean
cleanall:: ; $(RMF) *_?ats.html 

######

checkall:: lower
cleanall:: ; $(RMF) lower
lower: lower.dats ; $(ATSCC) -o lower lower.dats

checkall:: fgets
cleanall:: ; $(RMF) fgets
fgets: fgets.dats ; $(ATSCC) -o fgets fgets.dats

checkall:: filecopy
cleanall:: ; $(RMF) filecopy
filecopy: filecopy.dats ; $(ATSCC) -o filecopy filecopy.dats

######

html:: ; $(ATSOPT) --posmark_html -d lower.dats > lower_dats.html
html:: ; $(ATSOPT) --posmark_html -d fgets.dats > fgets_dats.html
html:: ; $(ATSOPT) --posmark_html -d filecopy.dats > filecopy_dats.html

######

RMF = rm -f

######

clean:
	$(RMF) *~
	$(RMF) *_?ats.c *_?ats.o

###### end of [Makefile] ######