Merge pull request #65 from Keating950/master

Add install target to Makefile
This commit is contained in:
Devin J. Pohly 2020-12-24 19:07:08 -05:00 committed by GitHub
commit 8dd99d2a10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -33,5 +33,10 @@ dwl: xdg-shell-protocol.o
clean: clean:
rm -f dwl *.o xdg-shell-protocol.h xdg-shell-protocol.c rm -f dwl *.o xdg-shell-protocol.h xdg-shell-protocol.c
install: dwl
mkdir -p $(PREFIX)/bin
cp -f dwl $(PREFIX)/bin
chmod 755 $(PREFIX)/bin/dwl
.DEFAULT_GOAL=dwl .DEFAULT_GOAL=dwl
.PHONY: clean .PHONY: clean

View File

@ -1,3 +1,6 @@
# paths
PREFIX = /usr/local
# Default compile flags (overridable by environment) # Default compile flags (overridable by environment)
CFLAGS ?= -g -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare -Wno-error=unused-function CFLAGS ?= -g -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare -Wno-error=unused-function