1
1
mirror of https://github.com/casey/just.git synced 2024-11-23 20:15:05 +03:00
just/examples/screenshot.just

16 lines
196 B
Plaintext
Raw Normal View History

2021-07-20 04:48:13 +03:00
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}}