makefile: fix release target

This commit is contained in:
Michael Stapelberg 2009-06-17 21:49:14 +02:00
parent 82b429c910
commit e1e3cd4940

View File

@ -34,7 +34,7 @@ install:
release:
[ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}
mkdir i3status-${VERSION}
cp *.c *.h *.1 *.conf Makefile i3status-${VERSION}
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}