mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
5e712ca255
This commit makes it so that running `make` without arguments builds rather than builds and runs, which is unconventional and surprising behaviour.
21 lines
256 B
Makefile
21 lines
256 B
Makefile
.PHONY: build build-debug run clean default install
|
|
|
|
default: build
|
|
|
|
build:
|
|
meson build
|
|
ninja -C build
|
|
|
|
build-debug:
|
|
meson build --buildtype=debug
|
|
ninja -C build
|
|
|
|
install: build
|
|
ninja -C build install
|
|
|
|
run: build
|
|
./build/waybar
|
|
|
|
clean:
|
|
rm -rf build
|