# see: http://www.ocaml.info/home/ocaml_sources.html#toc16

# put here the names of your source files (in the right order)
SOURCES = commons.ml perf.c prof.ml fsm_parsing.ml parsercomb.ml bounds_pc.ml cb_base.ml \
osm_parser.mly osm_lexer.mll bounds_yacc.ml bounds_fsm.ml main.ml

# the name of the resulting executable
RESULT  = bnd

# generate type information (.annot files)
ANNOTATE = yes
MSVC = true

OCAMLFLAGS = -I e:/ocaml/extlib 
OCAMLNCFLAGS = -inline 99
OCAMLLDFLAGS = -I e:/ocaml/extlib
LIBS = extlib 

# make target (see manual) : byte-code, debug-code, native-code, ...
all: debug-code

include OCamlMakefile