From d432a2a0fec7f1c28f01e93fdae9135bfec67d89 Mon Sep 17 00:00:00 2001 From: Raphael Robatsch Date: Thu, 28 Oct 2021 17:27:05 +0200 Subject: change dwm backend to somebar --- Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ef43ef4..1be71aa 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,16 @@ PREFIX ?= /usr/local CC ?= cc -LDFLAGS = -lX11 -output: dwmblocks.c blocks.def.h blocks.h - ${CC} dwmblocks.c $(LDFLAGS) -o dwmblocks +output: someblocks.c blocks.def.h blocks.h + ${CC} someblocks.c $(LDFLAGS) -o someblocks blocks.h: cp blocks.def.h $@ clean: - rm -f *.o *.gch dwmblocks + rm -f *.o *.gch someblocks install: output mkdir -p $(DESTDIR)$(PREFIX)/bin - install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks + install -m 0755 someblocks $(DESTDIR)$(PREFIX)/bin/someblocks uninstall: - rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks + rm -f $(DESTDIR)$(PREFIX)/bin/someblocks -- cgit v1.2.3