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-01-25 19:50:02 +00:00
|
|
|
ifeq ($(shell uname),Linux)
|
|
|
|
CFLAGS+=-DLINUX
|
|
|
|
endif
|
|
|
|
|
2009-04-17 11:31:53 +00:00
|
|
|
# Define this if you want i3status to spit out dzen2-compatible output on stdout
|
2009-02-22 19:16:48 +00:00
|
|
|
CFLAGS+=-DDZEN
|
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-04-17 11:48:14 +00:00
|
|
|
tar cjf i3status.tar.bz2 *.c *.h *.1 *.conf Makefile
|
2008-10-24 19:29:00 +00:00
|
|
|
|
2009-04-17 11:31:53 +00:00
|
|
|
all: i3status
|