diff options
author | Michael Stapelberg <michael+x200@stapelberg.de> | 2009-05-01 19:57:09 +0200 |
---|---|---|
committer | Michael Stapelberg <michael+x200@stapelberg.de> | 2009-05-01 19:57:09 +0200 |
commit | bb4ebcfeccc733d580f7d8dbe17f9be434fff54a (patch) | |
tree | 2459827e1b779c89d72506c94c794720849ddf80 /Makefile | |
parent | 52422a4f282dafa2f75abf37d59c9a9b73747cb4 (diff) |
Fix URLs, fix make release, update debian/changelog1.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -4,6 +4,8 @@ CFLAGS+=-std=gnu99 CFLAGS+=-pedantic CFLAGS+=-DPREFIX=\"\" +VERSION=$(shell git describe --tags --abbrev=0) + ifeq ($(shell uname),Linux) CFLAGS+=-DLINUX CFLAGS+=-D_GNU_SOURCE @@ -29,6 +31,10 @@ install: install -m 644 i3status.1 $(DESTDIR)/usr/share/man/man1 release: - tar cjf i3status.tar.bz2 *.c *.h *.1 *.conf Makefile + [ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION} + mkdir i3status-${VERSION} + cp *.c *.h *.1 *.conf Makefile i3status-${VERSION} + tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION} + rm -rf i3status-${VERSION} all: i3status |