My dmenu build
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.

Makefile 2.0 KiB

18 years ago
18 years ago
13 years ago
18 years ago
13 years ago
18 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
16 years ago
13 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # dmenu - dynamic menu
  2. # See LICENSE file for copyright and license details.
  3. include config.mk
  4. SRC = dmenu.c draw.c stest.c
  5. OBJ = ${SRC:.c=.o}
  6. all: options dmenu stest
  7. options:
  8. @echo dmenu build options:
  9. @echo "CFLAGS = ${CFLAGS}"
  10. @echo "LDFLAGS = ${LDFLAGS}"
  11. @echo "CC = ${CC}"
  12. .c.o:
  13. @echo CC -c $<
  14. @${CC} -c $< ${CFLAGS}
  15. config.h:
  16. @echo creating $@ from config.def.h
  17. @cp config.def.h $@
  18. ${OBJ}: config.h config.mk draw.h
  19. dmenu: dmenu.o draw.o
  20. @echo CC -o $@
  21. @${CC} -o $@ dmenu.o draw.o ${LDFLAGS}
  22. stest: stest.o
  23. @echo CC -o $@
  24. @${CC} -o $@ stest.o ${LDFLAGS}
  25. clean:
  26. @echo cleaning
  27. @rm -f dmenu stest ${OBJ} dmenu-${VERSION}.tar.gz
  28. dist: clean
  29. @echo creating dist tarball
  30. @mkdir -p dmenu-${VERSION}
  31. @cp LICENSE Makefile README config.mk dmenu.1 draw.h dmenu_path dmenu_run stest.1 ${SRC} dmenu-${VERSION}
  32. @tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
  33. @gzip dmenu-${VERSION}.tar
  34. @rm -rf dmenu-${VERSION}
  35. install: all
  36. @echo installing executables to ${DESTDIR}${PREFIX}/bin
  37. @mkdir -p ${DESTDIR}${PREFIX}/bin
  38. @cp -f dmenu dmenu_path dmenu_run stest ${DESTDIR}${PREFIX}/bin
  39. @chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu
  40. @chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_path
  41. @chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_run
  42. @chmod 755 ${DESTDIR}${PREFIX}/bin/stest
  43. @echo installing manual pages to ${DESTDIR}${MANPREFIX}/man1
  44. @mkdir -p ${DESTDIR}${MANPREFIX}/man1
  45. @sed "s/VERSION/${VERSION}/g" < dmenu.1 > ${DESTDIR}${MANPREFIX}/man1/dmenu.1
  46. @sed "s/VERSION/${VERSION}/g" < stest.1 > ${DESTDIR}${MANPREFIX}/man1/stest.1
  47. @chmod 644 ${DESTDIR}${MANPREFIX}/man1/dmenu.1
  48. @chmod 644 ${DESTDIR}${MANPREFIX}/man1/stest.1
  49. uninstall:
  50. @echo removing executables from ${DESTDIR}${PREFIX}/bin
  51. @rm -f ${DESTDIR}${PREFIX}/bin/dmenu
  52. @rm -f ${DESTDIR}${PREFIX}/bin/dmenu_path
  53. @rm -f ${DESTDIR}${PREFIX}/bin/dmenu_run
  54. @rm -f ${DESTDIR}${PREFIX}/bin/stest
  55. @echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
  56. @rm -f ${DESTDIR}${MANPREFIX}/man1/dmenu.1
  57. @rm -f ${DESTDIR}${MANPREFIX}/man1/stest.1
  58. .PHONY: all options clean dist install uninstall