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.

15 lines
372 B

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