-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69339d5
commit bcccf08
Showing
74 changed files
with
52,148 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Build the camlpdf library as byte code and native code | ||
PDFMODS = pdfutil pdfio pdftransform pdfunits pdfpaper pdf \ | ||
pdfcrypt pdfcodec pdfwrite pdfgenlex pdfread pdfjpeg pdfops pdfdest \ | ||
pdfmarks pdfpagelabels pdfpage pdfannot pdffun pdfspace pdfimage pdfafm \ | ||
pdfafmdata pdfglyphlist pdftext pdfstandard14 pdfgraphics pdfshapes pdfdate \ | ||
pdfocg pdfcff pdftype1 pdftruetype pdftype0 pdfmerge | ||
|
||
SOURCES = $(foreach x,$(PDFMODS),$(x).ml $(x).mli) pdfex.ml | ||
|
||
PACKS = js_of_ocaml js_of_ocaml.syntax bigarray | ||
|
||
RESULT = pdfex | ||
|
||
OCAMLBCFLAGS = -g | ||
OCAMLLDFLAGS = -g | ||
|
||
all : byte-code-library byte-code | ||
|
||
-include OCamlMakefile | ||
|
Oops, something went wrong.