diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-09-26 12:49:52 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-09-26 12:49:52 +0000 |
commit | 96eb2dc401f785e2b35a2089dda24416ff9bb305 (patch) | |
tree | f8bc936e8000c35bbccc3234535e513b48d20db4 /doc/Makefile.am | |
parent | a3741192151aaf4b4d26f97fe470c9e7ea34703e (diff) | |
download | pam-96eb2dc401f785e2b35a2089dda24416ff9bb305.tar.gz pam-96eb2dc401f785e2b35a2089dda24416ff9bb305.tar.bz2 pam-96eb2dc401f785e2b35a2089dda24416ff9bb305.zip |
Relevant BUGIDs: none
Purpose of commit: bugfix
Commit summary:
---------------
Fix spec generation and creating tar archive with automake:
* configure.in: Add doc/specs/Makefile.
* Makefile.am: Add releasedocs rule.
* doc/Makefile.am: Add specs subdir, remove files from specs
directory, add rfc86.0.txt to releasedocs.
* doc/specs/Makefile.am: New file.
* doc/specs/formatter/parse.y: move from here ...
* doc/specs/parse.y: ... here.
* doc/specs/formatter/parse.lex: move from here ...
* doc/specs/parse.lex: ... here.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 81b24b4c..a2967461 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -2,6 +2,8 @@ # Copyright (c) 2005 Thorsten Kukuk <kukuk@suse.de> # +SUBDIRS = specs + FILES=pam pam_appl pam_modules FSRCS=$(srcdir)/pam_appl.sgml $(srcdir)/pam_modules.sgml @@ -13,8 +15,7 @@ PDFFILES=pdf/pam.pdf pdf/pam_appl.pdf pdf/pam_modules.pdf MODULES=$(shell ls $(srcdir)/modules/*.sgml) CLEANFILES = *~ */*~ $(TEXTS) $(PSFILES) $(PDFFILES) html/pam*.html \ - ps/missfont.log MODULES-SGML pam.sgml \ - specs/draft-morgan-pam-current.txt + ps/missfont.log MODULES-SGML pam.sgml EXTRA_DIST = $(FSRCS) CREDITS NOTES figs/pam_orient.txt pdf/README \ ps/README html/index.html txts/README man/template-man $(MANS) \ @@ -139,14 +140,12 @@ if HAVE_SGML2HTML done endif -spec: specs/draft-morgan-pam.raw - 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-$(VERSION)-docs.tar.gz \ +releasedocs: all + tar zvfc ../Linux-PAM-$(VERSION)-docs.tar.gz \ --exclude CVS --exclude .cvsignore --exclude '.#*' \ - html ps txts pdf specs/draft-morgan-pam-current.txt - tar jvfc Linux-PAM-$(VERSION)-docs.tar.bz2 \ + --exclude README html ps txts pdf \ + specs/draft-morgan-pam-current.txt specs/rfc86.0.txt + tar jvfc ../Linux-PAM-$(VERSION)-docs.tar.bz2 \ --exclude CVS --exclude .cvsignore --exclude '.#*' \ - html ps txts pdf specs/draft-morgan-pam-current.txt + --exclude README html ps txts pdf \ + specs/draft-morgan-pam-current.txt specs/rfc86.0.txt |