Relevant BUGIDs: 129644

Purpose of commit: start next release

Commit summary:
---------------
I've bumped the version number, and added some Makefile code
for helping me make documentation releases.
This commit is contained in:
Andrew G. Morgan 2001-01-22 08:03:01 +00:00
parent ec6d77b384
commit b89c0d4cca
4 changed files with 14 additions and 2 deletions

View File

@ -35,6 +35,9 @@ Where you should replace XXXXX with a bug-id.
0.75: please submit patches for this section with actual code/doc
patches!
* bumped the version number, and added some code to assist in making
documentation releases (Bug 129644 - agmorgan).
0.74: Sun Jan 21 22:36:08 PST 2001
* made 0.74 release (Bug 129642 - agmorgan)

2
configure vendored
View File

@ -558,7 +558,7 @@ fi
LIBPAM_VERSION_MAJOR=0
LIBPAM_VERSION_MINOR=74
LIBPAM_VERSION_MINOR=75

View File

@ -9,7 +9,7 @@ dnl Release specific
dnl
LIBPAM_VERSION_MAJOR=0
LIBPAM_VERSION_MINOR=74
LIBPAM_VERSION_MINOR=75
AC_SUBST(LIBPAM_VERSION_MAJOR)
AC_SUBST(LIBPAM_VERSION_MINOR)

View File

@ -126,6 +126,13 @@ endif
install -m 644 $$file $(FAKEROOT)$(MANDIR)/man8 ; \
done
spec:
cd specs/formatter && make
specs/formatter/padout < specs/draft-morgan-pam.raw > specs/draft-morgan-pam-current.txt
releasedocs: all spec
tar zvfc Linux-PAM-$(MAJOR_REL).$(MINOR_REL)-docs.tar.gz --exclude CVS html ps txts specs/draft-morgan-pam-current.txt
clean:
rm -f *~ *.bak
rm -f html/pam*.html
@ -133,4 +140,6 @@ clean:
rm -f $(TEXTS)
rm -f $(PSFILES) ps/missfont.log
rm -f MODULES-SGML pam.sgml
rm -f specs/draft-morgan-pam-current.txt
make -C specs/formatter clean