/usr/share/doc/libcamlpdf-ocaml-dev/examples/Makefile is in libcamlpdf-ocaml-dev 2.2.1-1build1.
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 | export PACKS = camlpdf
export OCAMLBCFLAGS = -g -w -3
export OCAMLNCFLAGS = -g -w -3
export OCAMLLDFLAGS = -g
define PROJ_pdfhello
SOURCES=pdfhello.ml
RESULT=pdfhello
endef
export PROJ_pdfhello
define PROJ_pdfdecomp
SOURCES=pdfdecomp.ml
RESULT=pdfdecomp
endef
export PROJ_pdfdecomp
define PROJ_pdfmerge
SOURCES=pdfmergeexample.ml
RESULT=pdfmergeexample
endef
export PROJ_pdfmerge
define PROJ_pdfdraft
SOURCES=pdfdraft.ml
RESULT=pdfdraft
endef
export PROJ_pdfdraft
define PROJ_pdftest
SOURCES=pdftest.ml
RESULT=pdftest
endef
export PROJ_pdftest
define PROJ_pdfencrypt
SOURCES=pdfencrypt.ml
RESULT=pdfencrypt
endef
export PROJ_pdfencrypt
ifndef SUBPROJS
export SUBPROJS = pdfhello pdfdecomp pdfmerge pdfdraft pdftest pdfencrypt
endif
all: native-code
%:
@make -f OCamlMakefile subprojs SUBTARGET=$@
|