sidekick/Makefile
Guillaume Bury ed037a4aab Replaced old makefile (we use ocamlbuild now).
Added .merlin (still may needs some work though).
Fixed some warning of deprecated use of 'Pervasives.or'
2014-10-29 12:43:08 +01:00

22 lines
365 B
Makefile

# copyright (c) 2014, guillaume bury
LOG=build.log
COMP=ocamlbuild -log $(LOG)
OCAMLFIND= -use-ocamlfind -tag package\(zarith\)
FLAGS=
DIRS=-Is smt,common
DOC=lib.docdir/index.html
LIB=sat.cma
GENERATED=$(MAIN) $(BIN) gmon.out
all:$(LIB)
$(LIB):
$(COMP) $(FLAGS) $(DIRS) $(LIB)
doc:
$(COMP) $(FLAGS) $(DIRS) $(DOC)
clean:
$(COMP) -clean
rm -f $(GENERATED)