# HG changeset patch # User Michael Pavone # Date 1406369897 25200 # Node ID e613d243d2bcdc06353813598b4a2fdd429893f0 # Parent c0b3922646d86ad859afa3a3882554cb4681a2c2# Parent c68c03a0e072f260a73ecfef82529e100da4da4a Merge diff -r c0b3922646d8 -r e613d243d2bc code/submission.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/code/submission.sh Sat Jul 26 03:18:17 2014 -0700 @@ -0,0 +1,15 @@ +#!/bin/sh + +# To be run from the code subfolder. + +#Compiles the lambdaman.gcc program and places it in the solution folder +mkdir -p ../solution +./lmc dotScanner.lm > ../solution/lambdaman.gcc + +#Prepares a tar file for submission. +tar -cvzf ../../submission.tar.gz --exclude-vcs ../../icfp2014 + +#Prints the sha1 hash of the tar to standard out. +sha1sum ../../submission.tar.gz + +