NAME = rootfiles VERSION = 7.0 DOTFILES = Xdefaults bash_logout bash_profile bashrc cshrc emacs kderc tcshrc vimrc zshrc kde netscape FILES = Desktop 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 for i in $(FILES); do cp -ar $$i $(RPM_BUILD_ROOT)/root/ ; done install -d -m700 $(RPM_BUILD_ROOT)/root/tmp dis: 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 perl -p -i -e 's|^%define version.*|%define version $(VERSION)|' $(NAME).spec 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