git @ Cat's Eye Technologies Philomath / master build.sh
master

Tree @master (Download .tar.gz)

build.sh @masterraw · history · blame

1
2
3
4
5
6
#!/bin/sh -e

CC="gcc -ansi -pedantic"
for MODULE in assert formula assumptions theorem; do
    (cd src && ${CC} ${CFLAGS} -I../include -c $MODULE.c -o $MODULE.o)
done