2020-03-02 12:36:26 +00:00
|
|
|
PREFIX ?= /usr/local
|
|
|
|
|
2019-12-12 17:28:06 +00:00
|
|
|
output: dwmblocks.c blocks.h
|
2020-05-30 02:22:34 +01:00
|
|
|
cc dwmblocks.c `pkg-config --cflags x11` `pkg-config --libs x11` -o dwmblocks
|
2019-03-24 22:31:05 +00:00
|
|
|
clean:
|
2019-11-27 05:42:27 +00:00
|
|
|
rm -f *.o *.gch dwmblocks
|
2019-03-27 00:32:08 +00:00
|
|
|
install: output
|
2020-03-02 12:36:26 +00:00
|
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
|
|
|
cp -f dwmblocks $(DESTDIR)$(PREFIX)/bin
|
2020-03-03 13:53:01 +00:00
|
|
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/dwmblocks
|
2020-03-02 12:42:26 +00:00
|
|
|
uninstall:
|
|
|
|
rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks
|