dmenu for lunch applications in dwm
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.

62 lines
1.7 KiB

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