dextra

dynamic window manager extra repository, themes, styles, dotfiles
git clone git://git.suckless.org/dextra
Log | Files | Refs | LICENSE

commit fbf6dc2171a8d639972aa0f169fe5480a40a8c43
parent 25e0543c6a5fdef76719f0b447398c79be2c1811
Author: arg@suckless.org <unknown>
Date:   Tue, 27 Nov 2007 13:08:11 +0100

added Makefile for dist creation
Diffstat:
Makefile | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,19 @@ +# dextra - extra package for the dynamic window manager +SRC = antony bluegray dolby fonts jobrien LICENSE lightgrey Makefile meillo minimalblue polachok +VERSION=0.1 + +all: + +clean: + @echo cleaning + @rm -f dextra-${VERSION}.tar.gz + +dist: clean + @echo creating dist tarball + @mkdir -p dextra-${VERSION} + @cp -R ${SRC} dextra-${VERSION} + @tar -cf dextra-${VERSION}.tar dextra-${VERSION} + @gzip dextra-${VERSION}.tar + @rm -rf dextra-${VERSION} + +.PHONY: clean dist