diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-08-05 21:57:44 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-08-05 21:57:44 +0400 |
commit | d59f97cc66de35dd9c8616136548d93cc1dd7f05 (patch) | |
tree | 4abb1443121764e20bb7f2e465048961d382543a /config.mk | |
parent | ec65333610b477e49d66be4e8c21fcc1139c70d2 (diff) |
directory layout changed and Makefile updated
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/config.mk b/config.mk deleted file mode 100644 index 137f7c8..0000000 --- a/config.mk +++ /dev/null @@ -1,32 +0,0 @@ -# dmenu version -VERSION = 5.3 - -# 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 -#MANPREFIX = ${PREFIX}/man - -# 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 -Os $(INCS) $(CPPFLAGS) -LDFLAGS = $(LIBS) - -# compiler and linker -CC = cc |