home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / Mesa-1.2.1 / widgets / man / Makefile < prev    next >
Encoding:
Makefile  |  1995-07-05  |  2.4 KB  |  96 lines

  1. # Generated automatically from Makefile.in by configure.
  2. # Makefile.in --- Mesa GL Widget for X11 Toolkit Programming
  3. # Copyright (C) 1995 by
  4. #   Jeroen van der Zijp <jvz@cyberia.cfdrc.com>
  5. #   Thorsten Ohl <Thorsten.Ohl@Physik.TH-Darmstadt.de>
  6. #
  7. # This library is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU Library General Public
  9. # License as published by the Free Software Foundation; either
  10. # version 2 of the License, or (at your option) any later version.
  11. #
  12. # This library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU Library General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Library General Public
  18. # License along with this library; if not, write to the Free Software
  19. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. #
  21. # $Id: Makefile.in,v 1.6 1995/04/22 14:13:02 ohl Exp $
  22. #
  23. ########################################################################
  24.  
  25. SHELL = /bin/sh
  26.  
  27. srcdir = .
  28. top_srcdir = ..
  29. mesa_srcdir = ../..
  30.  
  31. prefix = /usr/skunk
  32. manprefix =
  33.  
  34. mandir = $(prefix)/man/man.3x
  35.  
  36. POD2MAN = 
  37. POD2HTML = 
  38.  
  39. ########################################################################
  40. # No user serviceable parts below!
  41. ########################################################################
  42.  
  43. PODS = MesaDrawingArea.pod MesaWorkstation.pod \
  44.        GLwDrawingArea.pod GLwCreateMDrawingArea.pod \
  45.        GLwDrawingAreaSwapBuffers.pod GLwDrawingAreaMakeCurrent.pod
  46.  
  47. MANS = $(PODS:.pod=.3x)
  48. HTMLS = $(PODS:.pod=.html)
  49.  
  50. all: $(MANS) $(HTMLS)
  51.  
  52. install: $(MANS)
  53.     -mkdir -p $(mandir)
  54.     -cp $(MANS) $(mandir)
  55.  
  56. uninstall:
  57.     cd $(mandir) && rm -f $(MANS)
  58.  
  59. .SUFFIXES:
  60. .SUFFIXES: .html .3x .pod
  61.  
  62. .pod.html:
  63.     if test -n "$(POD2HTML)"; then \
  64.       $(POD2HTML) $^ > $@; \
  65.     else \
  66.       touch $@; \
  67.     fi
  68.  
  69. .pod.3x:
  70.     if test -n "$(POD2MAN)"; then \
  71.       $(POD2MAN) $^ > $@; \
  72.     else \
  73.       touch $@; \
  74.      fi
  75.  
  76. # Standard GNU clean* targets:
  77. maintainer-clean: clean
  78.     @echo "This command is intended for maintainers to use;"
  79.     @echo "it deletes files that may require special tools to rebuild."
  80.     rm -f *.3x *.html
  81.  
  82. mostlyclean: clean
  83.  
  84. distclean: clean
  85.     rm -f Makefile
  86.  
  87. clean:
  88.     rm -f .*~ *~
  89.  
  90. # Additional clean* targets:
  91. realclean: distclean
  92.  
  93. # GNU autoconf(1) targets:
  94. Makefile: Makefile.in $(top_srcdir)/config.status
  95.     cd $(top_srcdir); $(SHELL) config.status
  96.