]> git.sur5r.net Git - i3/i3status/blob - Makefile
Use the absolute values for (dis)charging rates
[i3/i3status] / Makefile
1 ifndef PREFIX
2   PREFIX=/usr
3 endif
4 ifndef SYSCONFDIR
5   ifeq ($(PREFIX),/usr)
6     SYSCONFDIR=/etc
7   else
8     SYSCONFDIR=$(PREFIX)/etc
9   endif
10 endif
11
12 CFLAGS+=-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
13 CFLAGS+=-g
14 CFLAGS+=-std=gnu99
15 CFLAGS+=-pedantic
16 CPPFLAGS+=-DSYSCONFDIR=\"$(SYSCONFDIR)\"
17 CPPFLAGS+=-DVERSION=\"${GIT_VERSION}\"
18 CFLAGS+=-Iinclude
19 LIBS+=-lconfuse
20 LIBS+=-lyajl
21
22 VERSION:=$(shell git describe --tags --abbrev=0)
23 GIT_VERSION:="$(shell git describe --tags --always) ($(shell git log --pretty=format:%cd --date=short -n1))"
24 OS:=$(shell uname)
25
26 ifeq ($(OS),Linux)
27 CPPFLAGS+=-DLINUX
28 CPPFLAGS+=-D_GNU_SOURCE
29 LIBS+=-liw
30 LIBS+=-lasound
31 endif
32
33 ifeq ($(OS),GNU/kFreeBSD)
34 LIBS+=-lbsd
35 endif
36
37 ifeq ($(OS),OpenBSD)
38 CFLAGS+=-I/usr/local/include/
39 LDFLAGS+=-L/usr/local/lib/
40 LIBS+=-lossaudio
41 endif
42
43
44 # This probably applies for any pkgsrc based system
45 ifneq (, $(filter $(OS), NetBSD DragonFly))
46 CFLAGS+=-I/usr/pkg/include/
47 LDFLAGS+=-L/usr/pkg/lib/
48 endif
49
50 ifeq ($(OS), NetBSD)
51 LIBS+= -lprop
52 endif
53
54
55 V ?= 0
56 ifeq ($(V),0)
57 # Don’t print command lines which are run
58 .SILENT:
59 endif
60
61 CFLAGS+=$(EXTRA_CFLAGS)
62
63 # Fallback for libyajl 1 which did not include yajl_version.h. We need
64 # YAJL_MAJOR from that file to decide which code path should be used.
65 CFLAGS += -idirafter yajl-fallback
66
67 OBJS:=$(wildcard src/*.c *.c)
68 OBJS:=$(OBJS:.c=.o)
69
70 src/%.o: src/%.c include/i3status.h
71         $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
72         @echo " CC $<"
73
74 %.o: %.c include/%.h
75         $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
76         @echo " CC $<"
77
78 all: i3status manpage
79
80 i3status: ${OBJS}
81         $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
82         @echo " LD $@"
83
84 clean:
85         rm -f *.o src/*.o
86
87 distclean: clean
88         rm -f i3status man/i3status.1
89
90 manpage:
91         $(MAKE) -C man
92
93 install:
94         install -m 755 -d $(DESTDIR)$(PREFIX)/bin
95         install -m 755 -d $(DESTDIR)$(SYSCONFDIR)
96         install -m 755 -d $(DESTDIR)$(PREFIX)/share/man/man1
97         install -m 755 i3status $(DESTDIR)$(PREFIX)/bin/i3status
98         # Allow network configuration for getting the link speed
99         (which setcap && setcap cap_net_admin=ep $(DESTDIR)$(PREFIX)/bin/i3status) || true
100         install -m 644 i3status.conf $(DESTDIR)$(SYSCONFDIR)/i3status.conf
101         install -m 644 man/i3status.1 $(DESTDIR)$(PREFIX)/share/man/man1
102
103 release:
104         [ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}
105         mkdir i3status-${VERSION}
106         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} \;
107         mkdir i3status-${VERSION}/src
108         mkdir i3status-${VERSION}/man
109         find src -maxdepth 1 -type f \( -regex ".*\.\(c\|h\)" \) -exec cp '{}' i3status-${VERSION}/src \;
110         find man -maxdepth 1 -type f \( -regex ".*\.\(1\|man\|conf\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION}/man \;
111         cp -r include i3status-${VERSION}
112         cp -r yajl-fallback i3status-${VERSION}
113         cp -r contrib i3status-${VERSION}
114         sed -e 's/^GIT_VERSION:=\(.*\)/GIT_VERSION=${GIT_VERSION}/g;s/^VERSION:=\(.*\)/VERSION=${VERSION}/g' Makefile > i3status-${VERSION}/Makefile
115         tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
116         rm -rf i3status-${VERSION}