Merge pull request #138 from cjbassi/master

Add install and build-debug commands to makefile
This commit is contained in:
Alex 2018-12-28 15:58:51 +01:00 committed by GitHub
commit aa6da11ba4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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