diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-10-03 16:26:31 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-10-03 16:26:31 +0000 |
commit | 093ac9be0c588d5a9a3f3562ab9f8a7b80ce56b5 (patch) | |
tree | dd0b73209e98947bc97a3123ba051fee9e64346f /Makefile | |
parent | d2b93f7b86f48ab2e79bd4df6bcd6787da439918 (diff) | |
download | bootsplash-093ac9be0c588d5a9a3f3562ab9f8a7b80ce56b5.tar bootsplash-093ac9be0c588d5a9a3f3562ab9f8a7b80ce56b5.tar.gz bootsplash-093ac9be0c588d5a9a3f3562ab9f8a7b80ce56b5.tar.bz2 bootsplash-093ac9be0c588d5a9a3f3562ab9f8a7b80ce56b5.tar.xz bootsplash-093ac9be0c588d5a9a3f3562ab9f8a7b80ce56b5.zip |
(dis) add new rule
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -18,16 +18,14 @@ all: install: @for i in $(SUBDIRS);do make -C $$i install;done -dir: - mkdir $(NAME)-$(VERSION) - -tar: dir localcopy - tar cvf $(NAME).tar $(NAME)-$(VERSION) +dis: clean + rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar* + svn export -q -rBASE . $(NAME)-$(VERSION) + find $(NAME)-$(VERSION) -name .cvsignore |xargs rm -rf + tar cf ../$(NAME)-$(VERSION).tar $(NAME)-$(VERSION) + bzip2 -9f ../$(NAME)-$(VERSION).tar rm -rf $(NAME)-$(VERSION) -localcopy: - tar c --exclude=.svn $(FILES) | tar x -C $(NAME)-$(VERSION) - clean: @for i in $(SUBDIRS);do make -C $$i clean;done rm -f *~ \#*\# |