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.

12 lines
352 B

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