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