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.
 
 
 
 
 

22 lines
319 B

  1. # progrma name
  2. PROG = xmenu
  3. # paths
  4. PREFIX = /usr/local
  5. MANPREFIX = ${PREFIX}/share/man
  6. X11INC = /usr/X11R6/include
  7. X11LIB = /usr/X11R6/lib
  8. # includes and libs
  9. INCS = -I${X11INC}
  10. LIBS = -L${X11LIB} -lX11
  11. # flags
  12. CPPFLAGS =
  13. CFLAGS = -Wall -Wextra ${INCS} ${CPPFLAGS}
  14. LDFLAGS = ${LIBS}
  15. # compiler and linker
  16. CC = cc