]> git.sur5r.net Git - i3/i3lock/blob - Makefile
debian: fix packaging format to 1.0 for now
[i3/i3lock] / Makefile
1 INSTALL=install
2 PREFIX=/usr
3 SYSCONFDIR=/etc
4
5 # Check if pkg-config is installed, we need it for building CFLAGS/LIBS
6 ifeq ($(shell which pkg-config 2>/dev/null 1>/dev/null || echo 1),1)
7 $(error "pkg-config was not found")
8 endif
9
10 CFLAGS += -std=c99
11 CFLAGS += -pipe
12 CFLAGS += -Wall
13 CPPFLAGS += -D_GNU_SOURCE
14 ifndef NOLIBCAIRO
15 CFLAGS += $(shell pkg-config --cflags cairo xcb-keysyms xcb-dpms xcb-xinerama)
16 LIBS += $(shell pkg-config --libs cairo xcb-keysyms xcb-dpms xcb-xinerama xcb-image)
17 else
18 CPPFLAGS += -DNOLIBCAIRO
19 CFLAGS += $(shell pkg-config --cflags xcb-keysyms xcb-dpms xcb-xinerama)
20 LIBS += $(shell pkg-config --libs xcb-keysyms xcb-dpms xcb-image xcb-xinerama)
21 endif
22 LIBS += -lpam
23 LIBS += -lev
24
25 FILES:=$(wildcard *.c)
26 FILES:=$(FILES:.c=.o)
27
28 VERSION:=$(shell git describe --tags --abbrev=0)
29 GIT_VERSION:="$(shell git describe --tags --always) ($(shell git log --pretty=format:%cd --date=short -n1))"
30 CPPFLAGS += -DVERSION=\"${GIT_VERSION}\"
31
32 .PHONY: install clean uninstall
33
34 all: i3lock
35
36 i3lock: ${FILES}
37         $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
38
39 clean:
40         rm -f i3lock ${FILES} i3lock-${VERSION}.tar.gz
41
42 install: all
43         $(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
44         $(INSTALL) -d $(DESTDIR)$(SYSCONFDIR)/pam.d
45         $(INSTALL) -m 755 i3lock $(DESTDIR)$(PREFIX)/bin/i3lock
46         $(INSTALL) -m 644 i3lock.pam $(DESTDIR)$(SYSCONFDIR)/pam.d/i3lock
47
48 uninstall:
49         rm -f $(DESTDIR)$(PREFIX)/bin/i3lock
50
51 dist: clean
52         [ ! -d i3lock-${VERSION} ] || rm -rf i3lock-${VERSION}
53         [ ! -e i3lock-${VERSION}.tar.bz2 ] || rm i3lock-${VERSION}.tar.bz2
54         mkdir i3lock-${VERSION}
55         cp *.c *.h i3lock.1 i3lock.pam Makefile LICENSE README i3lock-${VERSION}
56         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
57         tar cfj i3lock-${VERSION}.tar.bz2 i3lock-${VERSION}
58         rm -rf i3lock-${VERSION}