2009-01-25 22:18:25 +00:00
|
|
|
CFLAGS+=-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
|
2008-10-07 13:33:54 +00:00
|
|
|
CFLAGS+=-g
|
2009-04-17 11:31:53 +00:00
|
|
|
CFLAGS+=-std=gnu99
|
|
|
|
CFLAGS+=-pedantic
|
2008-10-07 13:33:54 +00:00
|
|
|
CFLAGS+=-DPREFIX=\"\"
|
|
|
|
|
2009-05-01 17:57:09 +00:00
|
|
|
VERSION=$(shell git describe --tags --abbrev=0)
|
|
|
|
|
2009-01-25 19:50:02 +00:00
|
|
|
ifeq ($(shell uname),Linux)
|
|
|
|
CFLAGS+=-DLINUX
|
2009-05-01 15:53:27 +00:00
|
|
|
CFLAGS+=-D_GNU_SOURCE
|
2009-01-25 19:50:02 +00:00
|
|
|
endif
|
|
|
|
|
2009-04-17 11:31:53 +00:00
|
|
|
# Define this if you want i3status to spit out dzen2-compatible output on stdout
|
2009-06-17 19:33:54 +00:00
|
|
|
#CFLAGS+=-DDZEN
|
|
|
|
CFLAGS+=$(EXTRA_CFLAGS)
|
2009-02-22 18:56:06 +00:00
|
|
|
|
2009-04-17 11:31:53 +00:00
|
|
|
i3status: i3status.o i3status.h
|
2008-10-07 13:33:54 +00:00
|
|
|
|
|
|
|
clean:
|
2008-10-24 19:29:00 +00:00
|
|
|
rm -f *.o
|
2008-10-07 13:33:54 +00:00
|
|
|
|
|
|
|
distclean: clean
|
2009-04-17 11:31:53 +00:00
|
|
|
rm -f i3status
|
2008-10-04 17:32:35 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
install -m 755 -d $(DESTDIR)/usr/bin
|
2009-04-17 11:48:14 +00:00
|
|
|
install -m 755 -d $(DESTDIR)/etc
|
2008-10-24 19:39:28 +00:00
|
|
|
install -m 755 -d $(DESTDIR)/usr/share/man/man1
|
2009-04-17 11:31:53 +00:00
|
|
|
install -m 755 i3status $(DESTDIR)/usr/bin/i3status
|
|
|
|
install -m 644 i3status.conf $(DESTDIR)/etc/i3status.conf
|
|
|
|
install -m 644 i3status.1 $(DESTDIR)/usr/share/man/man1
|
2008-10-04 17:32:35 +00:00
|
|
|
|
2008-10-24 19:29:00 +00:00
|
|
|
release:
|
2009-05-01 17:57:09 +00:00
|
|
|
[ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}
|
|
|
|
mkdir i3status-${VERSION}
|
2009-06-17 19:49:14 +00:00
|
|
|
find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|1\|h\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION} \;
|
2009-05-01 17:57:09 +00:00
|
|
|
tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
|
|
|
|
rm -rf i3status-${VERSION}
|
2008-10-24 19:29:00 +00:00
|
|
|
|
2009-04-17 11:31:53 +00:00
|
|
|
all: i3status
|