mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
21 lines
390 B
Makefile
21 lines
390 B
Makefile
# copyright (c) 2014, guillaume bury
|
|
|
|
LOG=build.log
|
|
COMP=ocamlbuild -log $(LOG) -use-ocamlfind -package zarith,unix -classic-display
|
|
FLAGS=
|
|
DIRS=-Is smt,common
|
|
DOC=lib.docdir/index.html
|
|
LIB=msat.cma msat.cmxa msat.cmxs
|
|
GENERATED=$(MAIN) $(BIN) gmon.out
|
|
|
|
all:$(LIB)
|
|
|
|
$(LIB):
|
|
$(COMP) $(FLAGS) $(DIRS) $(LIB)
|
|
|
|
doc:
|
|
$(COMP) $(FLAGS) $(DIRS) $(DOC)
|
|
|
|
clean:
|
|
$(COMP) -clean
|
|
rm -f $(GENERATED)
|