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.

пре 18 година
пре 14 година
пре 18 година
пре 13 година
пре 18 година
пре 18 година
пре 14 година
пре 18 година
пре 13 година
пре 18 година
пре 18 година
1234567891011121314151617181920212223242526272829
  1. # dmenu version
  2. VERSION = 4.2.1
  3. # dmenu_path cache (absolute or relative to $HOME)
  4. CACHE = .dmenu_cache
  5. # paths
  6. PREFIX = /usr/local
  7. MANPREFIX = ${PREFIX}/share/man
  8. X11INC = /usr/X11R6/include
  9. X11LIB = /usr/X11R6/lib
  10. # Xinerama, comment if you don't want it
  11. XINERAMALIBS = -lXinerama
  12. XINERAMAFLAGS = -DXINERAMA
  13. # includes and libs
  14. INCS = -I${X11INC}
  15. LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS}
  16. # flags
  17. CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" -DCACHE=\"${CACHE}\" ${XINERAMAFLAGS}
  18. CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
  19. LDFLAGS = -s ${LIBS}
  20. # compiler and linker
  21. CC = cc