661f3eb4bc
Change `cp`/`chmod` to `install` in Makefile
16 lines
372 B
Makefile
16 lines
372 B
Makefile
PREFIX ?= /usr/local
|
|
|
|
output: dwmblocks.c blocks.def.h blocks.h
|
|
cc `pkg-config --cflags x11` `pkg-config --libs x11` dwmblocks.c -o dwmblocks
|
|
blocks.h:
|
|
cp blocks.def.h $@
|
|
|
|
|
|
clean:
|
|
rm -f *.o *.gch dwmblocks
|
|
install: output
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
|
install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks
|