diff options
| author | Michael Stapelberg | 2009-10-16 20:46:45 +0200 | 
|---|---|---|
| committer | Michael Stapelberg | 2009-10-16 20:46:45 +0200 | 
| commit | 94ee6e4fb7b489e32669a10365a3dfe744e4a1a1 (patch) | |
| tree | 28bb92996cc5ecb24900258f1fd3b358b164890a | |
| parent | Implement option to use the last full capacity instead of the design capacity (diff) | |
Change Makefile to make releases containing our current directory structure
| -rw-r--r-- | Makefile | 6 | 
1 files changed, 5 insertions, 1 deletions
| @@ -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} | 
