diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-19 09:21:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-19 09:21:45 +0000 |
commit | d2986da510e6c7e4505c75a4b3fbb1940b2ad08d (patch) | |
tree | ebc252891ef89551a9d2cde9e164ba9d3c3e64ef /gnu/usr.bin/cvs/man/Makefile.in | |
parent | 2b1f6f285527e332944cd8a2802f26984978c7a9 (diff) |
raw import of cvs-1.6
Diffstat (limited to 'gnu/usr.bin/cvs/man/Makefile.in')
-rw-r--r-- | gnu/usr.bin/cvs/man/Makefile.in | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/gnu/usr.bin/cvs/man/Makefile.in b/gnu/usr.bin/cvs/man/Makefile.in new file mode 100644 index 00000000000..829f4fac84f --- /dev/null +++ b/gnu/usr.bin/cvs/man/Makefile.in @@ -0,0 +1,94 @@ +# Makefile for GNU CVS documentation. +# Do not use this makefile directly, but only from `../Makefile'. +# Copyright (C) 1986-1992 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +SHELL = /bin/sh + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ + +MAN1FILES = cvs.1 mkmodules.1 +MAN5FILES = cvs.5 +MAN8FILES = cvsbug.8 cvsinit.8 +MANFILES = $(MAN1FILES) $(MAN5FILES) $(MAN8FILES) + +DISTFILES = .cvsignore ChangeLog Makefile.in $(MANFILES) +INSTALL = @INSTALL@ +INSTALL_DATA = $(INSTALL) +prefix = @prefix@ +mandir = $(prefix)/man +man1dir = $(mandir)/man1 +man5dir = $(mandir)/man5 +man8dir = $(mandir)/man8 + +all: +.PHONY: all + +# CYGNUS LOCAL: Do not depend upon installdirs +install: all + for f in $(MAN1FILES); do \ + $(INSTALL_DATA) $(srcdir)/$$f $(man1dir)/$$f; \ + done + for f in $(MAN5FILES); do \ + $(INSTALL_DATA) $(srcdir)/$$f $(man5dir)/$$f; \ + done + for f in $(MAN8FILES); do \ + $(INSTALL_DATA) $(srcdir)/$$f $(man8dir)/$$f; \ + done + +installdirs: + $(SHELL) $(top_srcdir)/mkinstalldirs $(man1dir) $(man5dir) $(man8dir) + +.PHONY: install installdirs + +tags: +.PHONY: tags + +TAGS: +.PHONY: TAGS + +ls: + @true +.PHONY: ls + +clean: +.PHONY: clean + +distclean: clean + rm -f Makefile +.PHONY: distclean + +realclean: distclean +.PHONY: realclean + +dist-dir: + mkdir ${DISTDIR} + for i in ${DISTFILES}; do \ + ln $(srcdir)/$${i} ${DISTDIR}; \ + done +.PHONY: dist-dir + +subdir = man +Makefile: ../config.status Makefile.in + cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status + +#../config.status: ../configure +# cd .. ; $(SHELL) config.status --recheck + +#../configure: ../configure.in +# cd $(top_srcdir) ; autoconf |