16 lines
196 B
Plaintext
16 lines
196 B
Plaintext
|
alias b := build
|
||
|
|
||
|
host := `uname -a`
|
||
|
|
||
|
# build main
|
||
|
build:
|
||
|
cc *.c -o main
|
||
|
|
||
|
# test everything
|
||
|
test-all: build
|
||
|
./test --all
|
||
|
|
||
|
# run a specific test
|
||
|
test TEST: build
|
||
|
./test --test {{TEST}}
|