This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/sh
|
|
|
|
nontapmsg() {
|
|
echo $*
|
|
}
|
|
|
|
for i in *.c
|
|
do
|
|
f=`echo $i | sed "s/.c$//"`
|
|
nontapmsg "compiling $f"
|
|
gcc $f.c -Wall -Wextra -Wno-unused-parameter -g -o $f.bin -I../src -L../ -lipc
|
|
done
|