libipc-old/tests/build.sh

13 lines
193 B
Bash
Raw Permalink Normal View History

2019-07-27 15:48:56 +02:00
#!/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