mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2024-12-11 08:25:36 +01:00
20 lines
313 B
Makefile
20 lines
313 B
Makefile
SOURCES = compressor.ml
|
|
|
|
RESULT = compressor
|
|
|
|
PACKS = camlpdf
|
|
|
|
TARGETS := native-code
|
|
|
|
OCAMLFLAGS = -bin-annot
|
|
OCAMLNCFLAGS = -g -safe-string -w -3
|
|
OCAMLBCFLAGS = -g -safe-string -w -3
|
|
OCAMLLDFLAGS = -g
|
|
|
|
all : $(TARGETS)
|
|
|
|
clean ::
|
|
rm -rf doc foo foo2 out.pdf out2.pdf *.cmt *.cmti *.zlib
|
|
|
|
-include OCamlMakefile
|