i3lock-color/Makefile

55 lines
1.8 KiB
Makefile
Raw Normal View History

INSTALL=install
PREFIX=/usr
SYSCONFDIR=/etc
2015-04-26 18:57:47 +00:00
PKG_CONFIG=pkg-config
2009-03-11 21:17:00 +00:00
# Check if pkg-config is installed, we need it for building CFLAGS/LIBS
2015-04-26 18:57:47 +00:00
ifeq ($(shell which $(PKG_CONFIG) 2>/dev/null 1>/dev/null || echo 1),1)
$(error "$(PKG_CONFIG) was not found")
endif
2009-03-11 21:17:00 +00:00
CFLAGS += -std=c99
CFLAGS += -pipe
CFLAGS += -Wall
CPPFLAGS += -D_GNU_SOURCE
2015-04-26 18:57:47 +00:00
CFLAGS += $(shell $(PKG_CONFIG) --cflags cairo xcb-dpms xcb-xinerama xcb-atom xcb-image xcb-xkb xkbcommon xkbcommon-x11)
LIBS += $(shell $(PKG_CONFIG) --libs cairo xcb-dpms xcb-xinerama xcb-atom xcb-image xcb-xkb xkbcommon xkbcommon-x11)
LIBS += -lpam
2011-12-28 19:28:18 +00:00
LIBS += -lev
LIBS += -lm
2009-03-11 21:17:00 +00:00
FILES:=$(wildcard *.c)
FILES:=$(FILES:.c=.o)
2009-03-11 21:17:00 +00:00
VERSION:=$(shell git describe --tags --abbrev=0)
GIT_VERSION:="$(shell git describe --tags --always) ($(shell git log --pretty=format:%cd --date=short -n1))"
CPPFLAGS += -DVERSION=\"${GIT_VERSION}\"
2009-03-11 21:17:00 +00:00
.PHONY: install clean uninstall
2009-03-11 21:17:00 +00:00
all: i3lock-color
2009-03-11 21:17:00 +00:00
i3lock-color: ${FILES}
$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
2009-03-11 21:17:00 +00:00
clean:
rm -f i3lock-color ${FILES} i3lock-color-${VERSION}.tar.gz
2009-03-11 21:17:00 +00:00
install: all
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -d $(DESTDIR)$(SYSCONFDIR)/pam.d
$(INSTALL) -m 755 i3lock-color $(DESTDIR)$(PREFIX)/bin/i3lock-color
$(INSTALL) -m 644 i3lock-color.pam $(DESTDIR)$(SYSCONFDIR)/pam.d/i3lock-color
2009-03-11 21:17:00 +00:00
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/i3lock-color
2011-11-06 14:20:40 +00:00
dist: clean
[ ! -d i3lock-color-${VERSION} ] || rm -rf i3lock-color-${VERSION}
[ ! -e i3lock-c-olor-${VERSION}.tar.bz2 ] || rm i3lock-color-${VERSION}.tar.bz2
2011-11-06 14:20:40 +00:00
mkdir i3lock-${VERSION}
2015-05-20 07:00:19 +00:00
cp *.c *.h i3lock.1 i3lock.pam Makefile LICENSE README.md CHANGELOG i3lock-${VERSION}
2011-11-06 14:20:40 +00:00
sed -e 's/^GIT_VERSION:=\(.*\)/GIT_VERSION:=$(shell /bin/echo '${GIT_VERSION}' | sed 's/\\/\\\\/g')/g;s/^VERSION:=\(.*\)/VERSION:=${VERSION}/g' Makefile > i3lock-${VERSION}/Makefile
tar cfj i3lock-color-${VERSION}.tar.bz2 i3lock-color-${VERSION}
rm -rf i3lock-color-${VERSION}