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
|
PACKAGENAME := tyxml
LIBNAME := tyxml
## Binaries
OCAMLFIND := ocamlfind
OCAMLLEX := ocamllex
OCAMLDUCEFIND := ocamlducefind
## Build options
## Shall we build ocamlduce support ? [detect]
OCAMLDUCE := \
$(shell (${OCAMLDUCEFIND} query > /dev/null 2>&1 && echo yes) || echo no)
## Shall we build native plugins ? [detect]
NATDYNLINK := \
$(shell (test -f $$(${OCAMLFIND} query dynlink)/dynlink.cmxa && echo yes) || echo no)
# DBG := -g
OBJEXT := .o
LIBEXT := .a
|