mirror of
https://github.com/casey/just.git
synced 2025-07-07 17:45:00 +00:00
15 lines
196 B
Text
15 lines
196 B
Text
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}}
|