summaryrefslogtreecommitdiff
path: root/demo/make_all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'demo/make_all.sh')
-rwxr-xr-xdemo/make_all.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/demo/make_all.sh b/demo/make_all.sh
new file mode 100755
index 0000000..41e17c4
--- /dev/null
+++ b/demo/make_all.sh
@@ -0,0 +1,7 @@
+#!/usr/bin/env bash
+
+gcc -Wall -c -o md5.o md5.c
+gcc -Wall -c -o utils.o utils.c
+gcc -Wall -L. md5.o utils.o -o premise premise.c
+gcc -Wall -L. md5.o utils.o -o conclusion conclusion.c
+