File: Makefile.config

package info (click to toggle)
tyxml 2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 652 kB
  • sloc: ml: 8,786; makefile: 235; sh: 1
file content (26 lines) | stat: -rw-r--r-- 481 bytes parent folder | download
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