diff options
author | Frederic Lepied <flepied@mandriva.com> | 2003-02-17 20:57:18 +0000 |
---|---|---|
committer | Frederic Lepied <flepied@mandriva.com> | 2003-02-17 20:57:18 +0000 |
commit | 072f476415abeb727f6e425ba3c723e427b54e4e (patch) | |
tree | c5d16ee9518040596545daa1a08195b00b878e56 /Makefile | |
parent | dc4062e1bc2d15370de462eaaf548495648da7d9 (diff) | |
download | indexhtml-072f476415abeb727f6e425ba3c723e427b54e4e.tar indexhtml-072f476415abeb727f6e425ba3c723e427b54e4e.tar.gz indexhtml-072f476415abeb727f6e425ba3c723e427b54e4e.tar.bz2 indexhtml-072f476415abeb727f6e425ba3c723e427b54e4e.tar.xz indexhtml-072f476415abeb727f6e425ba3c723e427b54e4e.zip |
first version
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..8bdf3c9 --- /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: changelog 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 |