summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile38
1 files changed, 13 insertions, 25 deletions
diff --git a/Makefile b/Makefile
index cad68c5..4e16f31 100644
--- a/Makefile
+++ b/Makefile
@@ -1,41 +1,29 @@
NAME = rootfiles
-VERSION = $(shell rpm -q --qf %{VERSION} --specfile $(NAME).spec)
-RPM = $(HOME)/rpm/
+VERSION = 11.0
DOTFILES = Xdefaults bash_logout bash_profile bashrc bash_completion cshrc tcshrc vimrc
+DOC = ChangeLog
+DESTDIR =
all:
@echo "Use make install"
install:
- install -m700 -d $(RPM_BUILD_ROOT)/root
- for i in $(DOTFILES) ; do cp -ar $$i $(RPM_BUILD_ROOT)/root/.$$i ; done
- install -d -m700 $(RPM_BUILD_ROOT)/root/tmp
- install -d $(RPM_BUILD_ROOT)/root/.netscape/{cache,archive}
+ install -m700 -d $(DESTDIR)/root
+ for i in $(DOTFILES) ; do cp -ar $$i $(DESTDIR)/root/.$$i ; done
+ install -d -m700 $(DESTDIR)/root/tmp
+ install -d $(DESTDIR)/root/.netscape/{cache,archive}
-dis: clean
- cvs commit
+dis: clean changelog
rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar*
mkdir -p $(NAME)-$(VERSION)
- find . -not -name "$(NAME)-$(VERSION)" | cpio -pd $(NAME)-$(VERSION)/
- find $(NAME)-$(VERSION) -type d -name CVS -o -name .cvsignore -o -name unused |xargs rm -rf
- tar cf ../$(NAME)-$(VERSION).tar $(NAME)-$(VERSION)
- bzip2 -9f ../$(NAME)-$(VERSION).tar
+ cp $(DOC) $(DOTFILES) $(NAME)-$(VERSION)/
+ tar cf $(NAME)-$(VERSION).tar $(NAME)-$(VERSION)
+ bzip2 -9f $(NAME)-$(VERSION).tar
rm -rf $(NAME)-$(VERSION)
-rpm: dis ../$(NAME)-$(VERSION).tar.bz2 $(RPM)
- cp -f ../$(NAME)-$(VERSION).tar.bz2 $(RPM)/SOURCES
- cp -f $(NAME).spec $(RPM)/SPECS/
- -rpm -ba --clean --rmsource $(NAME).spec
- rm -f ../$(NAME)-$(VERSION).tar.bz2
-
clean:
rm -f *~
-changelog: ../common/username
- cvs2cl -U ../common/username -I ChangeLog
+changelog:
+ svn2cl -o ChangeLog || :
rm -f ChangeLog.bak
- cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog
-
-toto:
- @echo $(NAME)
- @echo $(VERSION)