This file is indexed.

/usr/share/doc/libghc-binary-doc/examples/Makefile is in libghc-binary-doc 0.7.2.1-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
ghc := ghc
ghc-flags := 

all: compiled

interpreted:
	runhaskell QC.hs 1000

compiled:
	$(ghc) --make -fhpc -O QC.hs -o qc -fforce-recomp -threaded -rtsopts -i../src -XCPP -package test-framework -package test-framework-quickcheck2 $(ghc-flags)
	rm -f qc.tix
	./qc --maximum-generated-tests=1000 -j2 +RTS -N2

hugs:
	runhugs -98 QC.hs  

clean:
	rm -f *.o *.hi qc *.tix *~

.PHONY: clean