12 lines
115 B
Bash
Executable File
12 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
./fmt.sh -- --check
|
|
if [ -z "$TARGET" ]
|
|
then
|
|
make all
|
|
make test
|
|
else
|
|
make libc
|
|
fi
|