just/examples/screenshot.just
2021-07-20 01:48:13 +00:00

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}}