mirror of
https://codeberg.org/scip/dbtool.git
synced 2025-12-16 19:00:58 +01:00
23 lines
428 B
Makefile
23 lines
428 B
Makefile
#
|
|
# convenience wrapper around meson and ninja. Forgive me, I'm old :
|
|
|
|
.PHONY: all static install test clean debug
|
|
all:
|
|
meson setup --reconfigure build
|
|
ninja -C build
|
|
|
|
install: all
|
|
sudo ninja -C install
|
|
|
|
clean:
|
|
rm -rf build dbtool*core* dbtool.1 test.db
|
|
|
|
test:
|
|
@.woodpecker/test.sh
|
|
|
|
debug: all
|
|
rm -f test.db
|
|
build/dbtool -d test.db -i -k borg -v sevenofnine -p -P foobar
|
|
build/dbtool -d test.db -s -k borg -p -P foobar
|
|
|