diff options
author | Michael Cardell Widerkrantz <mc@hack.org> | 2013-02-09 21:16:38 +0100 |
---|---|---|
committer | Michael Cardell Widerkrantz <mc@hack.org> | 2013-02-09 21:16:38 +0100 |
commit | f20b857e33d1ffcb36ae3a4bcf38f500e24c2536 (patch) | |
tree | ba6dc660559f4e316c1db2df4ec4c38d0ebcee8b | |
parent | d3d1c71b90824d60c0c7b927c264f35b659d4594 (diff) | |
download | mcwm-f20b857e33d1ffcb36ae3a4bcf38f500e24c2536.zip |
Include scripts directory in distribution.20130209-2
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ -VERSION=20130209 +VERSION=20130209-2 DIST=mcwm-$(VERSION) SRC=mcwm.c list.c config.h events.h list.h hidden.c -DISTFILES=LICENSE Makefile NEWS README TODO WISHLIST mcwm.man hidden.man $(SRC) +DISTFILES=LICENSE Makefile NEWS README TODO WISHLIST mcwm.man hidden.man scripts $(SRC) CFLAGS+=-g -std=c99 -Wall -Wextra -I/usr/local/include #-DDEBUG #-DDMALLOC LDFLAGS+=-L/usr/local/lib -lxcb -lxcb-randr -lxcb-keysyms -lxcb-icccm \ @@ -44,7 +44,7 @@ deinstall: $(DIST).tar.bz2: mkdir $(DIST) - cp $(DISTFILES) $(DIST)/ + cp -r $(DISTFILES) $(DIST)/ tar cf $(DIST).tar --exclude .git $(DIST) bzip2 -9 $(DIST).tar $(RM) -rf $(DIST) |