diff options
| author | stkhan <personal@slickd.xyz> | 2022-05-22 10:28:58 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2022-05-22 10:28:58 +0000 |
| commit | f580f6b064235ce0de0792abc86e719e50f87696 (patch) | |
| tree | 69563c9ce3483beddd4a9065c205410e0d0052fe /dmenu-5.0/config.mk | |
| parent | 30e3e653dc7083c4e2f2855ec32f42f5490b8a35 (diff) | |
Updated dmenu, fixed crashing issue
Diffstat (limited to 'dmenu-5.0/config.mk')
| -rw-r--r-- | dmenu-5.0/config.mk | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/dmenu-5.0/config.mk b/dmenu-5.0/config.mk deleted file mode 100644 index 2cd7c46..0000000 --- a/dmenu-5.0/config.mk +++ /dev/null @@ -1,31 +0,0 @@ -include ../config.mk -# dmenu version -VERSION = 5.0 - -# paths -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 - -# includes and libs -INCS = -I$(X11INC) -I$(FREETYPEINC) -LIBS = -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) - -# 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 -Ofast $(INCS) $(CPPFLAGS) -LDFLAGS = $(LIBS) - -# compiler and linker -CC = cc |