home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / utils / misc / doschk / Makefile.in < prev    next >
Encoding:
Makefile  |  1993-10-25  |  2.3 KB  |  110 lines

  1. # Makefile for doschk.    -*- 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., 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. INSTALL = @INSTALL@
  26. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  27. INSTALL_DATA = @INSTALL_DATA@
  28.  
  29. DEFS = @DEFS@
  30. LIBS = @LIBS@
  31.  
  32. CFLAGS = -g
  33. LDFLAGS = -g
  34.  
  35. prefix = /usr/local
  36. exec_prefix = $(prefix)
  37.  
  38. bindir = $(exec_prefix)/bin
  39. datadir = $(prefix)/lib
  40. libdir = $(prefix)/lib
  41. infodir = $(prefix)/info
  42.  
  43. # Where to install the manual pages.
  44. mandir = $(prefix)/man/man1
  45. # Extension (not including `.') for the installed manual page filenames.
  46. manext = 1
  47.  
  48. #### End of system configuration section. ####
  49.  
  50. SHELL = /bin/sh
  51.  
  52. LOADLIBES = $(LIBS)
  53.  
  54. DISTFILES = COPYING ChangeLog Makefile.in README doschk.c
  55.  
  56. DISTNAME = doschk-1.1
  57.  
  58. all: doschk
  59. info:
  60.  
  61. .c.o:
  62.     $(CC) -c -I. -I$(srcdir) $(DEFS) $(CPPFLAGS) $(CFLAGS) $<
  63.  
  64. ### targets required by GNU Coding standards ###
  65.  
  66. TAGS:
  67.     cd $(srcdir); etags
  68.  
  69. clean:
  70.     rm -f *.o core a.out doschk
  71.  
  72. mostlyclean: clean
  73.  
  74. distclean: clean
  75.     rm -f Makefile config.status
  76.  
  77. realclean: distclean
  78.     rm -f TAGS
  79.  
  80. dist: $(DISTFILES)
  81.     rm -rf $(DISTNAME)
  82.     mkdir $(DISTNAME)
  83.     ln $(DISTFILES) $(DISTNAME)
  84.     tar --gzip -chf $(DISTNAME).tar.z $(DISTNAME)
  85.     rm -rf $(DISTNAME)
  86.  
  87. install: all
  88.     $(INSTALL_PROGRAM) doschk $(bindir)/doschk
  89.  
  90. install-info:
  91.  
  92. uninstall: force
  93.     -cd $(bindir); rm -f doschk
  94.  
  95. ### Actual doschk-specific targets ###
  96.  
  97. doschk: doschk.o
  98.  
  99. #check: doschk
  100. #    ls -1 * | ./doschk
  101.  
  102. #doschk.info: doschk.texi
  103. #    cd $(srcdir); makeinfo doschk.texi
  104.  
  105. #doschk.dvi: doschk.texi
  106. #    cd $(srcdir); texi2dvi doschk.texi
  107.  
  108. # Prevent GNU make v3 from overflowing arg limit on SysV.
  109. .NOEXPORT:
  110.