aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.local
diff options
context:
space:
mode:
authorvblot <24938579+vblot@users.noreply.github.com>2021-05-28 18:29:37 +0200
committerGitHub <noreply@github.com>2021-05-28 18:29:37 +0200
commite12110637730d067c216abcc86185b761189b342 (patch)
treec9ed415bbdadb2801e4917aae4a803035b13d4e8 /src/Makefile.local
parent52980aab9541a12619eb9191a94e9b2ba4684447 (diff)
downloadsmtcoq-e12110637730d067c216abcc86185b761189b342.tar.gz
smtcoq-e12110637730d067c216abcc86185b761189b342.zip
getting rid of native-coq (#95)
Diffstat (limited to 'src/Makefile.local')
-rw-r--r--src/Makefile.local36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/Makefile.local b/src/Makefile.local
new file mode 100644
index 0000000..8abc72c
--- /dev/null
+++ b/src/Makefile.local
@@ -0,0 +1,36 @@
+########################################################################
+## This file is intended to developers: please do not use it ##
+## directly, rather use the "configure.sh" script. ##
+########################################################################
+
+
+test :
+ cd ../unit-tests; make cleanvo; make
+
+ztest :
+ cd ../unit-tests; make cleanvo; make zchaff
+
+vtest :
+ cd ../unit-tests; make cleanvo; make verit
+
+lfsctest :
+ cd ../unit-tests; make cleanvo; make lfsc
+
+paralleltest :
+ cd ../unit-tests; make parallel
+
+clean::
+ cd ../unit-tests; make clean
+
+
+CAMLLEX = $(CAMLBIN)ocamllex
+CAMLYACC = $(CAMLBIN)ocamlyacc
+
+%.ml : %.mll
+ $(CAMLLEX) $<
+
+%.ml %.mli : %.mly
+ $(CAMLYACC) $<
+
+.PHONY: smtcoq_plugin.mlpack.d
+smtcoq_plugin.mlpack.d : verit/veritParser.ml verit/veritLexer.ml ../3rdparty/alt-ergo/smtlib2_parse.ml ../3rdparty/alt-ergo/smtlib2_lex.ml smtlib2/sExprParser.ml smtlib2/sExprLexer.ml lfsc/lfscParser.ml lfsc/lfscLexer.ml