home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / t / trmcap11.zip / termcap-1.1 / Makefile.in < prev    next >
Makefile  |  1992-10-13  |  3KB  |  118 lines

  1. # Makefile for GNU termcap library.
  2. # Copyright (C) 1992 Free Software Foundation, Inc.
  3.  
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. #### Start of system configuration section. ####
  19.  
  20. srcdir = @srcdir@
  21. VPATH = @srcdir@
  22.  
  23. CC = @CC@
  24.  
  25. # If you don't have a BSD or GNU install program, use cp.
  26. INSTALL = @INSTALL@
  27. INSTALL_DATA = @INSTALL_DATA@
  28.  
  29. MAKEINFO = makeinfo
  30.  
  31. # Things you might add to DEFS:
  32. # -DUSG            If you have memcpy instead of bcopy.
  33. # -DNO_ARG_ARRAY    If you can't take the address of the first of
  34. #            a group of arguments and treat it as an array.
  35. #            We always define this, because it's not a big loss
  36. #            and can't be detected when cross-autoconfiguring.
  37.  
  38. DEFS = @DEFS@ -DNO_ARG_ARRAY
  39.  
  40. CFLAGS = -g
  41.  
  42. prefix = /usr/local
  43. exec_prefix = $(prefix)
  44.  
  45. # Directory in which to install libtermcap.a.
  46. libdir = $(exec_prefix)/lib
  47.  
  48. # Directory in which to install termcap.h.
  49. includedir = $(prefix)/include
  50.  
  51. # Directory in which to optionally also install termcap.h,
  52. # so compilers besides gcc can find it by default.
  53. # If it is empty or not defined, termcap.h will only be installed in
  54. # includedir. 
  55. oldincludedir = /usr/include
  56.  
  57. # Directory in which to install the documentation info files.
  58. infodir = $(prefix)/info
  59.  
  60. #### End of system configuration section. ####
  61.  
  62. SHELL = /bin/sh
  63.  
  64. SRCS = termcap.c tparam.c version.c
  65. OBJS = termcap.o tparam.o version.o
  66. HDRS = termcap.h
  67. DISTFILES = $(SRCS) $(HDRS) ChangeLog COPYING README INSTALL NEWS \
  68. termcap.texi termcap.info* \
  69. texinfo.tex Makefile.in configure configure.in
  70.  
  71. all:    libtermcap.a termcap.info
  72.  
  73. .c.o:
  74.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(DEFS) -I$(srcdir) $<
  75.  
  76. install: all
  77.     $(INSTALL_DATA) libtermcap.a $(libdir)/libtermcap.a
  78.     -ranlib $(libdir)/libtermcap.a
  79.     cd $(srcdir); $(INSTALL_DATA) termcap.h $(includedir)/termcap.h
  80.     -cd $(srcdir); test -z "$(oldincludedir)" || \
  81.       $(INSTALL_DATA) termcap.h $(oldincludedir)/termcap.h
  82.     cd $(srcdir); for f in termcap.info*; \
  83.     do $(INSTALL_DATA) $$f $(infodir)/$$f; done
  84.  
  85. uninstall:
  86.     rm -f $(libdir)/libtermcap.a $(includedir)/termcap.h
  87.     test -z "$(oldincludedir)" || rm -f $(oldincludedir)/termcap.h
  88.     rm -f $(infodir)/termcap.info*
  89.  
  90. libtermcap.a: $(OBJS)
  91.     ar rc $@ $(OBJS)
  92.     -ranlib $@
  93.  
  94. termcap.info: termcap.texi
  95.     $(MAKEINFO) $(srcdir)/termcap.texi --output=$(srcdir)/termcap.info
  96.  
  97. TAGS:    $(SRCS)
  98.     etags $(SRCS)
  99.  
  100. clean:
  101.     rm -f *.a *.o core
  102.  
  103. mostlyclean: clean
  104.  
  105. distclean: clean
  106.     rm -f Makefile config.status
  107.  
  108. realclean: distclean
  109.     rm -f TAGS *.info*
  110.  
  111. dist: $(DISTFILES)
  112.     echo termcap-`sed -e '/version_string/!d' -e 's/[^0-9]*\([0-9a-z.]*\).*/\1/' -e q version.c` > .fname
  113.     rm -rf `cat .fname`
  114.     mkdir `cat .fname`
  115.     ln $(DISTFILES) `cat .fname`
  116.     tar chZf `cat .fname`.tar.Z `cat .fname`
  117.     rm -rf `cat .fname` .fname
  118.