# Build the cpdf command line tools NONDOC = cpdfyojson cpdfxmlm DOC = cpdfunicodedata cpdferror cpdfdebug cpdfjson cpdfstrftime cpdfcoord \ cpdfattach cpdfpagespec cpdfposition cpdfpresent cpdfmetadata \ cpdfbookmarks cpdfpage cpdftruetype cpdfremovetext cpdfextracttext \ cpdfembed cpdfaddtext cpdffont cpdftype cpdfpad cpdfocg \ cpdfsqueeze cpdfdraft cpdfspot cpdfpagelabels cpdfcreate cpdfannot \ cpdfxobject cpdfimpose cpdftweak cpdftexttopdf cpdftoc cpdfjpeg \ cpdfpng cpdfimage cpdfdraw cpdfcomposition cpdfgraphics cpdfshape \ cpdfcolours cpdfcommand MODS = $(NONDOC) $(DOC) SOURCES = $(foreach x,$(MODS),$(x).ml $(x).mli) cpdfcommandrun.ml RESULT = cpdf ANNOTATE = true PACKS = camlpdf CFLAGS = -fPIC OCAMLFLAGS = -bin-annot OCAMLNCFLAGS = -g -safe-string OCAMLBCFLAGS = -g -safe-string OCAMLLDFLAGS = -g TARGETS := byte-code-library htdoc LIBINSTALL_FILES = cpdf.cma \ $(foreach x,$(MODS),$x.mli) $(foreach x,$(MODS),$x.cmi) \ $(foreach x,$(MODS),$x.cmti) ifneq ($(shell ocamlopt -version),) TARGETS += native-code native-code-library LIBINSTALL_FILES += cpdf.a cpdf.cmxa $(foreach x,$(MODS),$x.cmx) endif all : $(TARGETS) clean :: rm -rf doc foo foo2 out.pdf out2.pdf foo.pdf decomp.pdf *.cmt *.cmti \ *.json test/*.pdf *.ps *.aux *.idx *.log *.out *.toc *.cut \ *.ttf *.ttx out.png DOC_FILES = $(foreach x,$(DOC),$(x).mli) install : libinstall -include OCamlMakefile