]> git.sur5r.net Git - i3/i3status/blob - Makefile
Merge getting thermal zone temperature from atsutane, thanks!
[i3/i3status] / Makefile
1 CFLAGS+=-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
2 CFLAGS+=-g
3 CFLAGS+=-std=gnu99
4 CFLAGS+=-pedantic
5 CFLAGS+=-DPREFIX=\"\"
6
7 VERSION=$(shell git describe --tags --abbrev=0)
8
9 ifeq ($(shell uname),Linux)
10 CFLAGS+=-DLINUX
11 CFLAGS+=-D_GNU_SOURCE
12 endif
13
14 # Define this if you want i3status to spit out dzen2-compatible output on stdout
15 CFLAGS+=-DDZEN
16
17 i3status: i3status.o i3status.h
18
19 clean:
20         rm -f *.o
21
22 distclean: clean
23         rm -f i3status
24
25 install:
26         install -m 755 -d $(DESTDIR)/usr/bin
27         install -m 755 -d $(DESTDIR)/etc
28         install -m 755 -d $(DESTDIR)/usr/share/man/man1
29         install -m 755 i3status $(DESTDIR)/usr/bin/i3status
30         install -m 644 i3status.conf $(DESTDIR)/etc/i3status.conf
31         install -m 644 i3status.1 $(DESTDIR)/usr/share/man/man1
32
33 release:
34         [ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}
35         mkdir i3status-${VERSION}
36         cp *.c *.h *.1 *.conf Makefile i3status-${VERSION}
37         tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
38         rm -rf i3status-${VERSION}
39
40 all: i3status