i3status/Makefile

65 lines
1.4 KiB
Makefile
Raw Normal View History

CFLAGS+=-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
CFLAGS+=-g
CFLAGS+=-std=gnu99
CFLAGS+=-pedantic
CFLAGS+=-DPREFIX=\"\"
CFLAGS+=-I.
LDFLAGS+=-lconfuse
VERSION=$(shell git describe --tags --abbrev=0)
ifeq ($(shell uname),Linux)
CFLAGS+=-DLINUX
CFLAGS+=-D_GNU_SOURCE
LDFLAGS+=-liw
endif
2009-08-31 17:34:57 +00:00
ifeq ($(shell uname),GNU/kFreeBSD)
CFLAGS+=-lbsd
endif
# Define this if you want i3status to spit out dzen2-compatible output on stdout
CFLAGS+=-DDZEN
CFLAGS+=$(EXTRA_CFLAGS)
2009-02-22 18:56:06 +00:00
OBJS:=$(wildcard src/*.c *.c)
OBJS:=$(OBJS:.c=.o)
src/%.o: src/%.c
@$(CC) $(CFLAGS) -c -o $@ $<
@echo " CC $<"
2009-06-17 20:13:48 +00:00
%.o: %.c %.h
@$(CC) $(CFLAGS) -c -o $@ $<
@echo " CC $<"
2009-06-17 20:08:33 +00:00
2009-10-12 07:59:11 +00:00
all: i3status manpage
i3status: ${OBJS}
2009-10-01 20:13:30 +00:00
@$(CC) -o $@ src/*.o *.o $(LDFLAGS)
@echo " LD $@"
clean:
rm -f *.o src/*.o
distclean: clean
rm -f i3status
2009-10-12 07:59:11 +00:00
manpage:
make -C man
install:
install -m 755 -d $(DESTDIR)/usr/bin
install -m 755 -d $(DESTDIR)/etc
2008-10-24 19:39:28 +00:00
install -m 755 -d $(DESTDIR)/usr/share/man/man1
install -m 755 i3status $(DESTDIR)/usr/bin/i3status
install -m 644 i3status.conf $(DESTDIR)/etc/i3status.conf
install -m 644 man/i3status.1 $(DESTDIR)/usr/share/man/man1
release:
[ -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} \;
tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
rm -rf i3status-${VERSION}