summaryrefslogtreecommitdiff
path: root/demo/make_all.sh
blob: baa87229647f184892ad97991bceb8e87e7f9281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

# Linker opts is blank for OS X, FreeBSD and OpenSolaris
#LINKER_OPTIONS=""

# Must link with realtime libs for Linux
LINKER_OPTIONS="-lrt"

gcc -Wall -c -o md5.o md5.c
gcc -Wall -c -o utils.o utils.c
gcc -Wall -L. $LINKER_OPTIONS md5.o utils.o -o premise premise.c
gcc -Wall -L. $LINKER_OPTIONS md5.o utils.o -o conclusion conclusion.c