mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
Added .merlin (still may needs some work though). Fixed some warning of deprecated use of 'Pervasives.or'
22 lines
365 B
Makefile
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)
|