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.

31 lines
664 B

  1. PREFIX ?= /usr/local
  2. CC ?= cc
  3. CFLAGS = -pedantic -Wall -Wno-deprecated-declarations -Os
  4. LDFLAGS = -lX11
  5. all: options dwmblocks
  6. options:
  7. @echo dwmblocks build options:
  8. @echo "CFLAGS = ${CFLAGS}"
  9. @echo "LDFLAGS = ${LDFLAGS}"
  10. @echo "CC = ${CC}"
  11. dwmblocks: dwmblocks.c blocks.def.h blocks.h
  12. ${CC} -o dwmblocks dwmblocks.c ${CFLAGS} ${LDFLAGS}
  13. blocks.h:
  14. cp blocks.def.h $@
  15. clean:
  16. ${RM} *.o *.gch dwmblocks
  17. install: dwmblocks
  18. mkdir -p ${DESTDIR}${PREFIX}/bin
  19. cp -f dwmblocks ${DESTDIR}${PREFIX}/bin
  20. chmod 755 ${DESTDIR}${PREFIX}/bin/dwmblocks
  21. uninstall:
  22. ${RM} ${DESTDIR}${PREFIX}/bin/dwmblocks
  23. .PHONY: all options clean install uninstall