summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-07-07 00:04:41 +0000
committerMorgan Deters <mdeters@gmail.com>2010-07-07 00:04:41 +0000
commit227961228dec11a2dae7d66ab7246014d0b491ba (patch)
tree127cbf5d32a564fb4f20723019ffcb8b064ec976 /Makefile
parent868d2f9cf7c8dcdee6dbf7d88b4d002065e8ae68 (diff)
things for competition upload: new "make submission" target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7e0e0261b..f70caefa4 100644
--- a/Makefile
+++ b/Makefile
@@ -17,3 +17,12 @@ all %:
# synonyms for "check"
.PHONY: regress test
regress test: check
+
+submission:
+ if [ ! -e configure ]; then ./autogen.sh; fi
+ ./configure competition
+ $(MAKE)
+ mkdir -p cvc4-smtcomp-2010
+ cp -p $(top_builddir)/bin/cvc4 cvc4-smtcomp-2010/cvc4
+ cp -p contrib/run-smtcomp cvc4-smtcomp-2010/run
+ tar cfz cvc4-smtcomp-2010.tgz cvc4-smtcomp-2010
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback