summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-07-09 03:11:58 +0000
committerMorgan Deters <mdeters@gmail.com>2011-07-09 03:11:58 +0000
commitdd7011ca35bf5a6bdfcbbdb3cd4657c8828fefae (patch)
tree7f3fa5d16bcec95824e241349c2f37163ca6613f /Makefile
parent7e9d980e1fbaffadd0c76511e6c42e12b8039585 (diff)
fix submission makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8737dae1f..810c4b3c5 100644
--- a/Makefile
+++ b/Makefile
@@ -32,5 +32,9 @@ submission:
./configure competition --disable-shared --enable-static-binary
$(MAKE)
mkdir -p cvc4-smtcomp-2011
- cp -p $(top_builddir)/bin/cvc4 cvc4-smtcomp-2011/run
- tar cfz cvc4-smtcomp-2011.tgz cvc4-smtcomp-2011
+ cp -p $(top_builddir)/bin/cvc4 cvc4-smtcomp-2011/cvc4
+ strip cvc4-smtcomp-2011/cvc4
+ ( echo '#!/bin/sh'; \
+ echo 'exec ./cvc4 -L smt2 --no-interactive' ) > cvc4-smtcomp-2011/run
+ chmod 755 cvc4-smtcomp-2011/run
+ tar cf cvc4-smtcomp-2011.tar cvc4-smtcomp-2011
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback