This file is indexed.

/usr/share/doc/libzip-ocaml-dev/examples/Makefile is in libzip-ocaml-dev 1.05-3.

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
all: minizip minigzip

minigzip: minigzip.ml
	ocamlc -ccopt -g -g -I +zip  -o minigzip zip.cma minigzip.ml

minizip: minizip.ml
	ocamlc -ccopt -g -g -I +zip -o minizip unix.cma zip.cma minizip.ml

testzlib: ../zip.cma testzlib.ml
	ocamlc -g -I +zip -o testzlib zip.cma testzlib.ml

clean:
	rm -f *.cm*
	rm -f minigzip minizip testzlib