From 5163284b3fe025b93331e82f08db8f4d683f3dd0 Mon Sep 17 00:00:00 2001 From: nalin Date: Mon, 18 Nov 2002 20:29:23 +0000 Subject: try to get tagging working --- Makefile.am | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Makefile.am b/Makefile.am index 4771b57..c32902a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,21 @@ SUBDIRS = src EXTRA_DIST = README nss_directories.spec DISTCHECK_CONFIGURE_FLAGS = --with-moduledir=$$dc_install_base/modules + +NAME = nss_directories +VERSION = $(shell rpm -q --specfile --qf '%{version}' $(top_srcdir)/$(NAME).spec) +CVSTAG = $(shell echo $(NAME)-$(VERSION) | sed -e s,\\.,_,g -e s,-,_,g) + +tag: + cvs tag -c $(CVSTAG) + +force-tag: + cvs tag -cF $(CVSTAG) + +archive: + $(RM) -fr /tmp/$(NAME) + cd /tmp ; cvs -d $(shell cat $(top_srcdir)/CVS/Root) export -r $(CVSTAG) -d $(NAME)-$(VERSION) $(NAME) + cd /tmp/$(NAME)-$(VERSION) ; ./autogen.sh ; make distcheck + mv /tmp/$(NAME)-$(VERSION)/$(NAME)-$(VERSION).tar.* $(top_srcdir)/ + $(RM) -fr /tmp/$(NAME) + -- cgit