Added border, center, fuzzymatch, incremental, initialtext, instant, line-height, mouse-support, navhistory, non-blocking-stdin, password, pipeout, printinputtext, rejectnomatch, scroll, vertfull, wmtype and xyw patches
2019-09-19 00:33:15 +02:00
|
|
|
# dmenu version
|
|
|
|
VERSION = 4.9
|
|
|
|
|
|
|
|
# paths
|
|
|
|
PREFIX = /usr/local
|
|
|
|
MANPREFIX = $(PREFIX)/share/man
|
|
|
|
|
|
|
|
X11INC = /usr/X11R6/include
|
|
|
|
X11LIB = /usr/X11R6/lib
|
|
|
|
|
|
|
|
# Xinerama, comment if you don't want it
|
|
|
|
XINERAMALIBS = -lXinerama
|
|
|
|
XINERAMAFLAGS = -DXINERAMA
|
|
|
|
|
|
|
|
# freetype
|
|
|
|
FREETYPELIBS = -lfontconfig -lXft
|
|
|
|
FREETYPEINC = /usr/include/freetype2
|
|
|
|
# OpenBSD (uncomment)
|
|
|
|
#FREETYPEINC = $(X11INC)/freetype2
|
|
|
|
|
2020-05-29 17:01:40 +02:00
|
|
|
# Uncomment this for the alpha patch / ALPHA_PATCH
|
2020-06-13 15:32:41 +02:00
|
|
|
#XRENDER = -lXrender
|
|
|
|
|
|
|
|
# Uncomment for the pango patch / PANGO_PATCH
|
2020-08-05 11:31:54 +02:00
|
|
|
PANGOINC = `pkg-config --cflags xft pango pangoxft`
|
|
|
|
PANGOLIB = `pkg-config --libs xft pango pangoxft`
|
2020-05-29 17:01:40 +02:00
|
|
|
|
Added border, center, fuzzymatch, incremental, initialtext, instant, line-height, mouse-support, navhistory, non-blocking-stdin, password, pipeout, printinputtext, rejectnomatch, scroll, vertfull, wmtype and xyw patches
2019-09-19 00:33:15 +02:00
|
|
|
# includes and libs
|
2020-06-13 15:32:41 +02:00
|
|
|
INCS = -I$(X11INC) -I$(FREETYPEINC) ${PANGOINC}
|
|
|
|
LIBS = -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) -lm $(XRENDER) ${PANGOLIB}
|
Added border, center, fuzzymatch, incremental, initialtext, instant, line-height, mouse-support, navhistory, non-blocking-stdin, password, pipeout, printinputtext, rejectnomatch, scroll, vertfull, wmtype and xyw patches
2019-09-19 00:33:15 +02:00
|
|
|
|
|
|
|
# flags
|
|
|
|
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XINERAMAFLAGS)
|
|
|
|
CFLAGS = -std=c99 -pedantic -Wall -Os $(INCS) $(CPPFLAGS)
|
|
|
|
LDFLAGS = $(LIBS)
|
|
|
|
|
|
|
|
# compiler and linker
|
|
|
|
CC = cc
|