2020-03-02 13:36:26 +01:00
|
|
|
PREFIX ?= /usr/local
|
2020-08-12 04:50:11 +02:00
|
|
|
|
|
|
|
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 $@
|
|
|
|
|
|
|
|
|
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
|
2020-05-04 10:20:45 +02:00
|
|
|
install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks
|
2020-03-02 13:42:26 +01:00
|
|
|
uninstall:
|
|
|
|
rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks
|