A mirror of phillbush's xmenu.
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.
 
 
 
 
 

29 line
555 B

  1. # program name
  2. PROG = xmenu
  3. # paths
  4. PREFIX = /usr/local
  5. MANPREFIX = ${PREFIX}/share/man
  6. LOCALINC = /usr/local/include
  7. LOCALLIB = /usr/local/lib
  8. X11INC = /usr/X11R6/include
  9. X11LIB = /usr/X11R6/lib
  10. FREETYPEINC = /usr/include/freetype2
  11. # OpenBSD (uncomment)
  12. #FREETYPEINC = ${X11INC}/freetype2
  13. # includes and libs
  14. INCS = -I${LOCALINC} -I${X11INC} -I${FREETYPEINC}
  15. LIBS = -L${LOCALLIB} -L${X11LIB} -lfontconfig -lXft -lX11 -lXinerama -lImlib2
  16. # flags
  17. CPPFLAGS =
  18. CFLAGS = -Wall -Wextra ${INCS} ${CPPFLAGS}
  19. LDFLAGS = ${LIBS}
  20. # compiler and linker
  21. CC = cc