dmenu/config.mk

33 lines
775 B
Makefile
Raw Permalink Normal View History

2006-08-04 03:23:36 -05:00
# dmenu version
2024-03-19 06:12:52 -05:00
VERSION = 5.3
2006-08-04 02:35:27 -05:00
# paths
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
2006-08-04 02:35:27 -05:00
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
2022-05-01 11:38:25 -05:00
#MANPREFIX = ${PREFIX}/man
2006-08-04 02:35:27 -05:00
# includes and libs
INCS = -I$(X11INC) -I$(FREETYPEINC)
2025-01-02 19:01:59 -06:00
LIBS = -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) -lm
2006-08-04 02:35:27 -05: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)
2006-08-14 01:44:54 -05:00
# compiler and linker
2006-08-04 02:35:27 -05:00
CC = cc