diff options
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | config.mk | 3 | 
2 files changed, 8 insertions, 0 deletions
| @@ -33,5 +33,10 @@ dwl: xdg-shell-protocol.o  clean:  	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  .PHONY: clean @@ -1,3 +1,6 @@ +# paths +PREFIX = /usr/local +  # Default compile flags (overridable by environment)  CFLAGS ?= -g -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare -Wno-error=unused-function | 
