11 SYSCONFDIR=$(PREFIX)/etc
15 CFLAGS+=-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
19 CPPFLAGS+=-DSYSCONFDIR=\"$(SYSCONFDIR)\"
20 CPPFLAGS+=-DVERSION=\"${GIT_VERSION}\"
26 VERSION:=$(shell git describe --tags --abbrev=0)
27 GIT_VERSION:="$(shell git describe --tags --always) ($(shell git log --pretty=format:%cd --date=short -n1))"
32 CPPFLAGS+=-D_GNU_SOURCE
37 ifeq ($(OS),GNU/kFreeBSD)
41 ifneq (, $(filter $(OS), DragonFly FreeBSD OpenBSD))
42 CFLAGS+=-I/usr/local/include/
43 LDFLAGS+=-L/usr/local/lib/
50 # This probably applies for any pkgsrc based system
51 ifneq (, $(filter $(OS), NetBSD DragonFly))
52 CFLAGS+=-I/usr/pkg/include/
53 LDFLAGS+=-L/usr/pkg/lib/
58 # Don’t print command lines which are run
62 CFLAGS+=$(EXTRA_CFLAGS)
64 # Fallback for libyajl 1 which did not include yajl_version.h. We need
65 # YAJL_MAJOR from that file to decide which code path should be used.
66 CFLAGS += -idirafter yajl-fallback
68 OBJS:=$(wildcard src/*.c *.c)
72 OBJS:=$(filter-out src/pulse.o, $(OBJS))
73 LIBS:=$(filter-out -lpulse, $(LIBS)) -lpthread
76 src/%.o: src/%.c include/i3status.h
77 $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
81 $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
87 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
94 rm -f i3status man/i3status.1
100 install -m 755 -d $(DESTDIR)$(PREFIX)/bin
101 install -m 755 -d $(DESTDIR)$(SYSCONFDIR)
102 install -m 755 -d $(DESTDIR)$(MANPREFIX)/share/man/man1
103 install -m 755 i3status $(DESTDIR)$(PREFIX)/bin/i3status
104 # Allow network configuration for getting the link speed
105 (which setcap && setcap cap_net_admin=ep $(DESTDIR)$(PREFIX)/bin/i3status) || true
106 install -m 644 i3status.conf $(DESTDIR)$(SYSCONFDIR)/i3status.conf
107 install -m 644 man/i3status.1 $(DESTDIR)$(MANPREFIX)/share/man/man1
110 [ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}
111 mkdir i3status-${VERSION}
112 find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|h\)" -or -name "README" -or -name "Makefile" -or -name "LICENSE" -or -name "CHANGELOG" \) -exec cp '{}' i3status-${VERSION} \;
113 mkdir i3status-${VERSION}/src
114 mkdir i3status-${VERSION}/man
115 find src -maxdepth 1 -type f \( -regex ".*\.\(c\|h\)" \) -exec cp '{}' i3status-${VERSION}/src \;
116 find man -maxdepth 1 -type f \( -regex ".*\.\(1\|man\|conf\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION}/man \;
117 cp -r include i3status-${VERSION}
118 cp -r yajl-fallback i3status-${VERSION}
119 cp -r contrib i3status-${VERSION}
120 sed -e 's/^GIT_VERSION:=\(.*\)/GIT_VERSION=${GIT_VERSION}/g;s/^VERSION:=\(.*\)/VERSION=${VERSION}/g' Makefile > i3status-${VERSION}/Makefile
121 tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
122 rm -rf i3status-${VERSION}