Add install and build-debug commands to makefile

This commit is contained in:
Caleb Bassi 2018-12-28 06:37:07 -08:00
parent 3a9bf932b4
commit 6a5a4881ad
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,4 @@
.PHONY: build run clean default
.PHONY: build build-debug run clean default install
default: run
@ -6,6 +6,13 @@ 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