Maximilian Bosch
e987f74954
`dev-notes` are severely outdated. I dropped everything except one note that I moved to hacking.md. The parts about creating users are also covered elsewhere. The `update-dbix` part got a just command to make it discoverable again.
18 lines
371 B
Makefile
18 lines
371 B
Makefile
setup *OPTIONS:
|
|
meson setup build --prefix="$PWD/outputs/out" $mesonFlags {{ OPTIONS }}
|
|
|
|
build *OPTIONS:
|
|
meson compile -C build {{ OPTIONS }}
|
|
|
|
install *OPTIONS: (build OPTIONS)
|
|
meson install -C build
|
|
|
|
test *OPTIONS:
|
|
meson test -C build --print-errorlogs {{ OPTIONS }}
|
|
|
|
update-dbix:
|
|
cd src/sql && ./update-dbix-harness.sh
|
|
|
|
perlcritic:
|
|
perlcritic .
|