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.
 
 
 
 
 
 

26 lines
507 B

  1. # dmenu version
  2. VERSION = 4.4
  3. # paths
  4. PREFIX = /usr/local
  5. MANPREFIX = ${PREFIX}/share/man
  6. X11INC = /usr/X11R6/include
  7. X11LIB = /usr/X11R6/lib
  8. # Xinerama, comment if you don't want it
  9. XINERAMALIBS = -lXinerama
  10. XINERAMAFLAGS = -DXINERAMA
  11. # includes and libs
  12. INCS = -I${X11INC}
  13. LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS}
  14. # flags
  15. CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
  16. CFLAGS = -ansi -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
  17. LDFLAGS = -s ${LIBS}
  18. # compiler and linker
  19. CC = cc