]> git.sur5r.net Git - i3/i3status/commitdiff
Change Makefile to make releases containing our current directory structure
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 16 Oct 2009 18:46:45 +0000 (20:46 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 16 Oct 2009 18:46:45 +0000 (20:46 +0200)
Makefile

index 2b8f0cc3c7d46efad5acd938f78efd66df331c32..0fa51a9ba7045faf2fd5b06ac08cf1e58fcefdee 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -59,6 +59,10 @@ install:
 release:
        [ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}
        mkdir i3status-${VERSION}
-       find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|1\|h\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION} \;
+       find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|h\)" -or -name "Makefile" -or -name "LICENSE" \) -exec cp '{}' i3status-${VERSION} \;
+       mkdir i3status-${VERSION}/src
+       mkdir i3status-${VERSION}/man
+       find src -maxdepth 1 -type f \( -regex ".*\.\(c\|h\)" \) -exec cp '{}' i3status-${VERSION}/src \;
+       find man -maxdepth 1 -type f \( -regex ".*\.\(1\)" \) -exec cp '{}' i3status-${VERSION}/man \;
        tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
        rm -rf i3status-${VERSION}