]> git.sur5r.net Git - i3/i3status/blob - Makefile
makefile: fix dependencies
[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 CFLAGS+=$(EXTRA_CFLAGS)
17
18 i3status.o: i3status.h
19
20 i3status: i3status.o
21
22 clean:
23         rm -f *.o
24
25 distclean: clean
26         rm -f i3status
27
28 install:
29         install -m 755 -d $(DESTDIR)/usr/bin
30         install -m 755 -d $(DESTDIR)/etc
31         install -m 755 -d $(DESTDIR)/usr/share/man/man1
32         install -m 755 i3status $(DESTDIR)/usr/bin/i3status
33         install -m 644 i3status.conf $(DESTDIR)/etc/i3status.conf
34         install -m 644 i3status.1 $(DESTDIR)/usr/share/man/man1
35
36 release:
37         [ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}
38         mkdir i3status-${VERSION}
39         find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|1\|h\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION} \;
40         tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
41         rm -rf i3status-${VERSION}
42
43 all: i3status