You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
327 B

  1. PREFIX ?= /usr/local
  2. output: dwmblocks.c blocks.h
  3. cc `pkg-config --cflags x11` `pkg-config --libs x11` dwmblocks.c -o dwmblocks
  4. clean:
  5. rm -f *.o *.gch dwmblocks
  6. install: output
  7. mkdir -p $(DESTDIR)$(PREFIX)/bin
  8. install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks
  9. uninstall:
  10. rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks