|
1
2
3
4
5
|
OCAMLC=ocamlc
OCAMLOPT=ocamlopt
OCAMLDEP=ocamldep
INCLUDES=-I +xml-light -I +xlib -I +zip -I +bz2 -I +eniam
OCAMLFLAGS=$(INCLUDES) -g
|
|
6
|
OCAMLOPTFLAGS=$(INCLUDES) unix.cmxa xml-light.cmxa str.cmxa nums.cmxa zip.cmxa bz2.cmxa xlib.cmxa eniam-tokenizer.cmxa eniam-morphology.cmxa eniam-subsyntax.cmxa eniam-integration.cmxa
|
|
7
8
|
INSTALLDIR=`ocamlc -where`/eniam
|
|
9
|
SOURCES= ENIAM_CONLL.ml CONLL_adapter.ml ENIAMpreIntegration.ml
|
|
10
11
12
13
14
15
|
all: eniam-integration.cma eniam-integration.cmxa
install: all
mkdir -p $(INSTALLDIR)
cp eniam-integration.cmxa eniam-integration.a eniam-integration.cma $(INSTALLDIR)
|
|
16
17
|
cp ENIAM_CONLL.cmi CONLL_adapter.cmi ENIAMpreIntegration.cmi $(INSTALLDIR)
cp ENIAM_CONLL.cmx CONLL_adapter.cmx ENIAMpreIntegration.cmx $(INSTALLDIR)
|
|
18
19
|
# mkdir -p /usr/share/eniam/integration
# cp resources/* /usr/share/eniam/integration
|
|
20
|
|
|
21
22
|
install-local: install
|
|
23
24
25
26
27
28
|
eniam-integration.cma: $(SOURCES)
ocamlc -linkall -a -o eniam-integration.cma $(OCAMLFLAGS) $^
eniam-integration.cmxa: $(SOURCES)
ocamlopt -linkall -a -o eniam-integration.cmxa $(INCLUDES) $^
|
|
29
|
test: test.ml
|
|
30
|
$(OCAMLOPT) -o test $(OCAMLOPTFLAGS) test.ml
|
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
.SUFFIXES: .mll .mly .ml .mli .cmo .cmi .cmx
.mll.ml:
ocamllex $<
.mly.mli:
ocamlyacc $<
.mly.ml:
ocamlyacc $<
.ml.cmo:
$(OCAMLC) $(OCAMLFLAGS) -c $<
.mli.cmi:
$(OCAMLC) $(OCAMLFALGS) -c $<
.ml.cmx:
$(OCAMLOPT) $(OCAMLOPTFLAGS) -c $<
clean:
|
|
53
|
rm -f *~ *.cm[aoix] *.o *.so *.cmxa *.a test
|