A mirror of phillbush's xmenu.
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # program name
- PROG = xmenu
-
- # paths
- PREFIX = /usr/local
- MANPREFIX = ${PREFIX}/share/man
-
- LOCALINC = /usr/local/include
- LOCALLIB = /usr/local/lib
-
- X11INC = /usr/X11R6/include
- X11LIB = /usr/X11R6/lib
-
- FREETYPEINC = /usr/include/freetype2
- # OpenBSD (uncomment)
- #FREETYPEINC = ${X11INC}/freetype2
-
- # includes and libs
- INCS = -I${LOCALINC} -I${X11INC} -I${FREETYPEINC}
- LIBS = -L${LOCALLIB} -L${X11LIB} -lfontconfig -lXft -lX11 -lXinerama -lImlib2
-
- # flags
- CPPFLAGS =
- CFLAGS = -Wall -Wextra ${INCS} ${CPPFLAGS}
- LDFLAGS = ${LIBS}
-
- # compiler and linker
- CC = cc
|