makefile
1.03 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
OCAMLC=ocamlc
OCAMLOPT=ocamlopt
OCAMLDEP=ocamldep
INCLUDES=-I +xml-light -I +xlib -I +zip -I +bz2 -I +eniam
OCAMLFLAGS=$(INCLUDES) -g
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
INSTALLDIR=`ocamlc -where`/eniam
SOURCES=ENIAM_NKJP.ml validateTokenizer.ml
all: $(SOURCES)
$(OCAMLOPT) -o test $(OCAMLOPTFLAGS) $^
spelling: $(SOURCES) spelling.ml
mkdir -p NKJP1M_spelling_errors
$(OCAMLOPT) -o spelling $(OCAMLOPTFLAGS) $^
# install:
# mkdir -p /usr/share/eniam/Walenty
# cp resources/* /usr/share/eniam/Walenty
#
# install-local:
# mkdir -p /usr/local/share/eniam/Walenty
# cp resources/* /usr/local/share/eniam/Walenty
.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:
rm -f *~ *.cm[aoix] *.o *.so *.cmxa *.a test spelling