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