home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / cvsdos / man / makefile.in < prev    next >
Makefile  |  1993-11-20  |  2KB  |  70 lines

  1. # Makefile for GNU CVS documentation.
  2. # Do not use this makefile directly, but only from `../Makefile'.
  3. # Copyright (C) 1986-1992 Free Software Foundation, Inc.
  4.  
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. SHELL = /bin/sh
  20.  
  21. srcdir = @srcdir@
  22. @VPATH@
  23.  
  24. MAN1FILES = cvs.1 mkmodules.1
  25. MAN5FILES = cvs.5
  26. MANFILES = $(MAN1FILES) $(MAN5FILES)
  27.  
  28. DISTFILES = Makefile.in $(MANFILES)
  29. INSTALL = install -c
  30. INSTALL_DATA = $(INSTALL)
  31. mandir = $(prefix)/man
  32. man1dir = $(mandir)/man1
  33. man5dir = $(mandir)/man5
  34.  
  35. all:
  36. .PHONY: all
  37.  
  38. install: all
  39.     for f in $(MAN1FILES); do \
  40.         $(INSTALL_DATA) $(srcdir)/$$f $(man1dir)/$$f; \
  41.     done
  42.     for f in $(MAN5FILES); do \
  43.         $(INSTALL_DATA) $(srcdir)/$$f $(man5dir)/$$f; \
  44.     done
  45. .PHONY: install
  46.  
  47. tags:
  48. .PHONY: tags
  49.  
  50. TAGS:
  51. .PHONY: TAGS
  52.  
  53. ls:
  54.     @true
  55. .PHONY: ls
  56.  
  57. clean:
  58. .PHONY: clean
  59.  
  60. distclean: clean
  61.     rm -f Makefile
  62. .PHONY: distclean
  63.  
  64. realclean: distclean
  65. .PHONY: realclean
  66.  
  67. dist:
  68.     ln $(DISTFILES) ../`cat ../.fname`/man
  69. .PHONY: dist
  70.