9f86748a58
There is no make libc ➜ relibc git:(master) make libc make: *** No rule to make target 'libc'. Stop.
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 libs
|
|
fi
|