diff options
author | Steve Langasek <steve.langasek@ubuntu.com> | 2019-01-03 12:47:05 -0800 |
---|---|---|
committer | Steve Langasek <steve.langasek@ubuntu.com> | 2019-01-03 12:47:05 -0800 |
commit | 4c51da22e068907adb7857d50f5109a467c94d7c (patch) | |
tree | becf5fbae5dfcbe8896355f59042dc8eaefa7f37 /Linux-PAM/doc/Makefile | |
parent | efd31890b5ed496a5a00c08a262da240e66a4ddc (diff) | |
parent | ab9e8ba11f464fc083fc65a0bc695d60ebc86f3e (diff) | |
download | pam-4c51da22e068907adb7857d50f5109a467c94d7c.tar.gz pam-4c51da22e068907adb7857d50f5109a467c94d7c.tar.bz2 pam-4c51da22e068907adb7857d50f5109a467c94d7c.zip |
New upstream version 0.79
Diffstat (limited to 'Linux-PAM/doc/Makefile')
-rw-r--r-- | Linux-PAM/doc/Makefile | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/Linux-PAM/doc/Makefile b/Linux-PAM/doc/Makefile index 20c2a23f..1c2ba510 100644 --- a/Linux-PAM/doc/Makefile +++ b/Linux-PAM/doc/Makefile @@ -1,5 +1,5 @@ -### $Id: Makefile,v 1.1.1.2 2002/09/15 20:08:24 hartmans Exp $ +### $Id: Makefile,v 1.10 2004/09/22 09:37:47 kukuk Exp $ include ../Make.Rules @@ -25,7 +25,7 @@ dummy: # can type make pdf in this directory and see what happens in the pdf # subdirectory. -all: htmls texts postscript +all: htmls texts postscript pdf htmls: $(HTMLS) @@ -125,12 +125,12 @@ ifneq ($(PSER),) for file in ps/*.ps; do \ install -m 644 $$file $(FAKEROOT)$(DOCDIR)/ps ; \ done - ifeq ($(HAVE_PS2PDF),yes) - mkdir -p $(FAKEROOT)$(DOCDIR)/pdf - for file in pdf/*.pdf; do \ - install -m 644 $$file $(FAKEROOT)$(DOCDIR)/pdf ; \ - done - endif +ifeq ($(HAVE_PS2PDF),yes) + mkdir -p $(FAKEROOT)$(DOCDIR)/pdf + for file in pdf/*.pdf; do \ + install -m 644 $$file $(FAKEROOT)$(DOCDIR)/pdf ; \ + done +endif endif ifeq ($(HAVE_SGML2HTML),yes) mkdir -p $(FAKEROOT)$(DOCDIR)/html @@ -152,7 +152,9 @@ spec: specs/draft-morgan-pam.raw 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 + tar zvfc Linux-PAM-$(MAJOR_REL).$(MINOR_REL)-docs.tar.gz \ + --exclude CVS --exclude .cvsignore --exclude '.#*' \ + html ps txts specs/draft-morgan-pam-current.txt clean: rm -f *~ *.bak |