home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / texinfo-3.7-src.tgz / tar.out / fsf / texinfo / makeinfo / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  3KB  |  122 lines

  1. # Makefile for GNU makeinfo.  -*- Indented-Text -*-
  2. # Copyright (C) 1993 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17.  
  18. #### Start of system configuration section. ####
  19.  
  20. srcdir = @srcdir@
  21. VPATH = $(srcdir):$(common)
  22.  
  23. common = $(srcdir)/../libtxi
  24.  
  25. CC = @CC@
  26. INSTALL = @INSTALL@
  27. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  28. INSTALL_DATA = @INSTALL_DATA@
  29.  
  30. LN    = ln
  31. RM    = rm -f
  32. TAR    = tar
  33. MKDIR    = mkdir
  34. COMPRESS= compress
  35.  
  36. DEFS = @DEFS@
  37. LIBS = -L../libtxi -ltxi @LIBS@
  38. LOADLIBES = $(LIBS)
  39.  
  40. SHELL = /bin/sh
  41.  
  42. CFLAGS = @CFLAGS@
  43. LDFLAGS = @LDFLAGS@
  44.  
  45. prefix = @prefix@
  46. exec_prefix = @exec_prefix@
  47. bindir = $(exec_prefix)/bin
  48. # Prefix for each installed program, normally empty or `g'.
  49. binprefix = 
  50. libdir = $(prefix)/lib
  51. # Prefix for each installed man page, normally empty or `g'.
  52. manprefix = 
  53. mandir = $(prefix)/man/man1
  54. manext = 1
  55. infodir = $(prefix)/info
  56. guidedir = $(prefix)/guide
  57.  
  58. #### End of system configuration section. ####
  59.  
  60. SRCS =  makeinfo.c
  61. OBJS =  makeinfo.o
  62.  
  63. PROGS = makeinfo
  64.  
  65. all: $(PROGS) makeinfo.info makeinfo.guide
  66. sub-all: all
  67.  
  68. .c.o:
  69.     $(CC) -c $(CPPFLAGS) -I. -I$(srcdir) -I$(common) $(DEFS) $(CFLAGS) $<
  70.  
  71. makeinfo: $(OBJS) ../libtxi/libtxi.a
  72.     $(CC) $(LDFLAGS) -o makeinfo $(OBJS) $(LOADLIBES)
  73.  
  74. ../libtxi/libtxi.a:
  75.     (cd ../libtxi; $(MAKE) $(MFLAGS) libtxi.a)
  76.  
  77. makeinfo.o: makeinfo.c $(common)/getopt.h
  78.  
  79. makeinfo.info: ./makeinfo makeinfo.texi macro.texi
  80.     ./makeinfo --no-split -I$(srcdir) makeinfo.texi
  81.     
  82. makeinfo.guide: ./makeinfo makeinfo.texi macro.texi    
  83.     ./makeinfo --amiga-39 -I$(srcdir) makeinfo.texi -o makeinfo.guide
  84.  
  85. # makeinfo.texi: ./makeinfo makeinfo.mki
  86. #     ./makeinfo -E makeinfo.texi -I$(srcdir) makeinfo.mki
  87.  
  88. makeinfo.dvi: ./makeinfo makeinfo.texi macro.texi
  89.     ./makeinfo -E makeinfo.txi -I$(srcdir) makeinfo.texi
  90.     $(srcdir)/../util/texi2dvi makeinfo.txi
  91.  
  92. install: all
  93.     for f in $(PROGS); do $(INSTALL_PROGRAM) $$f $(bindir)/$(binprefix)$$f; done
  94.     -d=$(srcdir); test -f ./makeinfo.info && d=.; $(INSTALL_DATA) $$d/makeinfo.info $(infodir)/makeinfo.info
  95.     -d=$(srcdir); test -f ./makeinfo.guide && d=.; $(INSTALL_DATA) $$d/makeinfo.guide $(guidedir)/makeinfo.guide
  96.  
  97. uninstall:
  98.     for f in $(PROGS); do rm -f $(bindir)/$(binprefix)$$f; done
  99.     rm -f $(infodir)/makeinfo.info
  100.     rm -f $(guidedir)/makeinfo.guide
  101.  
  102. TAGS: $(SRCS)
  103.     etags $(SRCS)
  104.  
  105. clean:
  106.     rm -f *.o a.out core core.* $(PROGS)
  107.  
  108. mostlyclean: clean
  109.  
  110. distclean: clean
  111.     rm -f TAGS Makefile config.status *.info */*.info *.guide
  112.  
  113. realclean: distclean
  114.  
  115. Makefile: Makefile.in ../config.status
  116.     cd ..; sh config.status
  117.  
  118. # Prevent GNU make v3 from overflowing arg limit on SysV.
  119. .NOEXPORT:
  120.  
  121. # eof
  122.