i3lock/config.mk

26 lines
460 B
Makefile
Raw Normal View History

# i3lock version
VERSION = 1.0
2009-03-11 22:17:00 +01:00
# Customize below to fit your system
# paths
PREFIX = /usr
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
MANDIR = $(DESTDIR)$(PREFIX)/share/man
2009-03-11 22:17:00 +01:00
# includes and libs
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L${X11LIB} -lX11 -lpam -lXext -lXpm -lm
2009-03-11 22:17:00 +01:00
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"
2009-03-11 22:17:00 +01:00
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = ${LIBS}
2009-03-11 22:17:00 +01:00
# compiler and linker
CC = cc
INSTALL=install