diff options
| author | Mystery Man <unknown@mandriva.org> | 2003-03-11 18:11:30 +0000 |
|---|---|---|
| committer | Mystery Man <unknown@mandriva.org> | 2003-03-11 18:11:30 +0000 |
| commit | fb10f308816a358291927f6128911170942c2aef (patch) | |
| tree | 0db34a6ef96e0d8bfe1a07ec29c6a6eb8dcd397a /Makefile | |
| parent | 355dd58784f31f4de1523212cd5df06a4578d56e (diff) | |
| download | indexhtml-9_1_7mdk.tar indexhtml-9_1_7mdk.tar.gz indexhtml-9_1_7mdk.tar.bz2 indexhtml-9_1_7mdk.tar.xz indexhtml-9_1_7mdk.zip | |
This commit was manufactured by cvs2svn to create tag 'V9_1_7mdk'.V9_1_7mdk
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..94cb82a --- /dev/null +++ b/Makefile @@ -0,0 +1,58 @@ +PACKAGE = indexhtml +VERSION:=$(shell rpm -q --qf %{VERSION} --specfile $(PACKAGE).spec) +RELEASE:=$(shell rpm -q --qf %{RELEASE} --specfile $(PACKAGE).spec) +TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__') + +all: + +clean: + -find . -name '*~' | xargs rm -f + rm -f *.bz2 + +install: + mkdir -p $(RPM_BUILD_ROOT)/usr/share/doc/HTML + cp -p HTML/* $(RPM_BUILD_ROOT)/usr/share/doc/HTML/ + +version: + @echo $(VERSION)-$(RELEASE) + +# rules to build a test rpm + +localrpm: clean localdist buildrpm + +localdist: cleandist dir localcopy tar + +cleandist: + rm -rf $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.bz2 + +dir: + mkdir $(PACKAGE)-$(VERSION) + +localcopy: clean + find . -not -name "$(PACKAGE)-$(VERSION)" -a -not -name '*.bz2'|cpio -pd $(PACKAGE)-$(VERSION)/ + find $(PACKAGE)-$(VERSION) -type d -name CVS|xargs rm -rf + +tar: + tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION) + bzip2 -9vf $(PACKAGE)-$(VERSION).tar + rm -rf $(PACKAGE)-$(VERSION) + +buildrpm: + rpm -ta $(PACKAGE)-$(VERSION).tar.bz2 + +# rules to build a distributable rpm + +rpm: cvstag dist buildrpm + +dist: cleandist dir export tar + +export: + cvs export -d $(PACKAGE)-$(VERSION) -r $(TAG) $(PACKAGE) + +cvstag: + cvs tag $(CVSTAGOPT) $(TAG) + +changelog: ../common/username + cvs2cl -U ../common/username -I ChangeLog + rm -f ChangeLog.bak + cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog |
