A better version of dwmblock (i think)...
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.

17 lines
282B

  1. PREFIX=/usr/local
  2. all: dwmstatus dwmstatus-pulse
  3. clean:
  4. rm -f dwmstatus dwmstatus-pulse
  5. install:
  6. cp dwmstatus $(PREFIX)/bin
  7. cp dwmstatus-pulse $(PREFIX)/bin
  8. dwmstatus-pulse: dwmstatus-pulse.c
  9. $(CC) $< `pkg-config --libs libpulse-mainloop-glib` -o $@
  10. %: %.c
  11. $(CC) $< -o $@