]> git.sur5r.net Git - i3/i3status/blob - Makefile
Add some extra paths if we're compiling on OpenBSD.
[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
25 ifeq ($(shell uname),Linux)
26 CPPFLAGS+=-DLINUX
27 CPPFLAGS+=-D_GNU_SOURCE
28 LIBS+=-liw
29 LIBS+=-lasound
30 endif
31
32 ifeq ($(shell uname),GNU/kFreeBSD)
33 LIBS+=-lbsd
34 endif
35
36 ifeq ($(shell uname),OpenBSD)
37 CFLAGS+=-I/usr/local/include/
38 LDFLAGS+=-L/usr/local/lib/
39 endif
40
41 CFLAGS+=$(EXTRA_CFLAGS)
42
43 # Fallback for libyajl 1 which did not include yajl_version.h. We need
44 # YAJL_MAJOR from that file to decide which code path should be used.
45 CFLAGS += -idirafter $(TOPDIR)/yajl-fallback
46
47 OBJS:=$(wildcard src/*.c *.c)
48 OBJS:=$(OBJS:.c=.o)
49
50 src/%.o: src/%.c
51         @$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
52         @echo " CC $<"
53
54 %.o: %.c include/%.h
55         @$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
56         @echo " CC $<"
57
58 all: i3status manpage
59
60 i3status: ${OBJS}
61         @$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
62         @echo " LD $@"
63
64 clean:
65         rm -f *.o src/*.o
66
67 distclean: clean
68         rm -f i3status
69
70 manpage:
71         $(MAKE) -C man
72
73 install:
74         install -m 755 -d $(DESTDIR)$(PREFIX)/bin
75         install -m 755 -d $(DESTDIR)$(SYSCONFDIR)
76         install -m 755 -d $(DESTDIR)$(PREFIX)/share/man/man1
77         install -m 755 i3status $(DESTDIR)$(PREFIX)/bin/i3status
78         # Allow network configuration for getting the link speed
79         (which setcap && setcap cap_net_admin=ep $(DESTDIR)$(PREFIX)/bin/i3status) || true
80         install -m 644 i3status.conf $(DESTDIR)$(SYSCONFDIR)/i3status.conf
81         install -m 644 man/i3status.1 $(DESTDIR)$(PREFIX)/share/man/man1
82
83 release:
84         [ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}
85         mkdir i3status-${VERSION}
86         find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|h\)" -or -name "Makefile" -or -name "LICENSE" \) -exec cp '{}' i3status-${VERSION} \;
87         mkdir i3status-${VERSION}/src
88         mkdir i3status-${VERSION}/man
89         find src -maxdepth 1 -type f \( -regex ".*\.\(c\|h\)" \) -exec cp '{}' i3status-${VERSION}/src \;
90         find man -maxdepth 1 -type f \( -regex ".*\.\(1\|man\|conf\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION}/man \;
91         cp -r include i3status-${VERSION}
92         sed -e 's/^GIT_VERSION:=\(.*\)/GIT_VERSION=${GIT_VERSION}/g;s/^VERSION:=\(.*\)/VERSION=${VERSION}/g' Makefile > i3status-${VERSION}/Makefile
93         tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
94         rm -rf i3status-${VERSION}