summaryrefslogtreecommitdiff
path: root/minie/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'minie/build.sh')
-rwxr-xr-xminie/build.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/minie/build.sh b/minie/build.sh
index 898cb5a..12fde40 100755
--- a/minie/build.sh
+++ b/minie/build.sh
@@ -7,9 +7,11 @@ gcc -g -O0 -Wall -pedantic -std=c89 -Wno-return-type -o e2c e2c.c
./e2c < test4.e
./e2c < test5.e
./e2c < test6.e
+./e2c < test7.e
./e2c < test5.e > test5.c && gcc -g -o test5 test5.c && ./test5
./e2c < test6.e > test6.c && gcc -g -o test6 test6.c && ./test6
+./e2c < test7.e > test7.c && gcc -g -o test7 test7.c && ./test7
./e2c < ec.e
./e2c < ec.e > ec.c && gcc -o ec ec.c