dwmblocks/Makefile

17 lines
371 B
Makefile
Raw Normal View History

2020-03-02 13:36:26 +01:00
PREFIX ?= /usr/local
CC ?= cc
output: dwmblocks.c blocks.def.h blocks.h
${CC} `pkg-config --cflags x11 --libs x11` dwmblocks.c -o dwmblocks
blocks.h:
cp blocks.def.h $@
2019-03-24 23:31:05 +01:00
clean:
rm -f *.o *.gch dwmblocks
install: output
2020-03-02 13:36:26 +01:00
mkdir -p $(DESTDIR)$(PREFIX)/bin
install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks
2020-03-02 13:42:26 +01:00
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks