summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f2f4e94b929960648a5c93c8ce87d98a7eaf25cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
NAME = rootfiles
VERSION = $(shell rpm -q --qf %{VERSION} --specfile $(NAME).spec)
RPM = $(HOME)/rpm/
DOTFILES = Xdefaults bash_logout bash_profile bashrc cshrc tcshrc vimrc

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}

dis: clean
	cvs commit
	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
	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
	rm -f ChangeLog.bak
	cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog

toto:
	@echo $(NAME)
	@echo $(VERSION)