Move all suckless stuff to unused.

This commit is contained in:
Bartek Stalewski 2023-02-26 13:47:42 +01:00
parent cb44e12e67
commit 0e403387f2
68 changed files with 0 additions and 0 deletions

View file

@ -1,17 +0,0 @@
PREFIX ?= /usr/local
CC ?= cc
LDFLAGS = -lX11
output: dwmblocks.c blocks.def.h blocks.h
${CC} dwmblocks.c $(LDFLAGS) -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