jade
eb5de71adc
This lets you get the default options and still be able to add more.
Change-Id: Ife32c348b1498ff2ccdddf051a5bba520cfa36f0
28 lines
530 B
Makefile
28 lines
530 B
Makefile
# https://just.systems/man/en/
|
|
|
|
# List all available targets
|
|
list:
|
|
just --list
|
|
|
|
# Clean build artifacts
|
|
clean:
|
|
rm -rf build
|
|
|
|
# Prepare meson for building
|
|
setup *OPTIONS:
|
|
meson setup build --prefix="$PWD/outputs/out" $mesonFlags {{ OPTIONS }}
|
|
|
|
# Build lix
|
|
build *OPTIONS:
|
|
meson compile -C build {{ OPTIONS }}
|
|
|
|
alias compile := build
|
|
|
|
# Install lix for local development
|
|
install *OPTIONS: (build OPTIONS)
|
|
meson install -C build
|
|
|
|
# Run tests
|
|
test *OPTIONS:
|
|
meson test -C build --print-errorlogs {{ OPTIONS }}
|