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