# 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 mem.ml poly.ml geo_base.ml geo_simple.ml geo_complete.ml osm_parser.mly osm_lexer.mll main.ml

# the name of the resulting executable
RESULT  = osm

# 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