config.mk: Add LIBDIR

Signed-off-by: Christoph Lohmann <20h@r-36.net>
master
orbea 2022-09-23 21:17:01 -07:00 committed by Christoph Lohmann
parent 7cbc05ec64
commit 5d8e9b49ce
1 changed files with 2 additions and 1 deletions

View File

@ -5,11 +5,12 @@ VERSION = 1.1
# paths
PREFIX = /usr/local
LIBDIR = ${PREFIX}/lib
MANPREFIX = ${PREFIX}/share/man
# includes and libs
INCS = -I. -I/usr/include
LIBS = -L/usr/lib -lc -lX11 -lXss
LIBS = -L${LIBDIR} -lc -lX11 -lXss
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"