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 / amd-udi / mondfe / Makefile.in < prev    next >
Encoding:
Makefile  |  1995-09-20  |  2.5 KB  |  117 lines

  1. #
  2. # Makefile for utils/amd-udi/mondfe
  3. #   Copyright (C) 1993 Free Software Foundation
  4. #
  5. # This file 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 of the License, or
  8. # (at your option) 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. #     $Id: Makefile.in,v 1.3 1995/09/20 17:47:38 ian Exp $
  20. #
  21. # Written by Jeffrey Wheat (cassidy@cygnus.com)
  22. #
  23.  
  24. #### Start of system configuration section. ####
  25.  
  26. srcdir = @srcdir@
  27. VPATH = @srcdir@
  28.  
  29. CC = @CC@
  30.  
  31. INSTALL = @INSTALL@
  32. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  33. INSTALL_DATA = @INSTALL_DATA@
  34.  
  35. DEFS = @DEFS@
  36. LIBS = @LIBS@
  37. RANLIB = @RANLIB@
  38.  
  39. AR = ar
  40. AR_FLAGS = cq
  41.  
  42. CFLAGS = -g
  43.  
  44. LD = ld
  45. LDFLAGS = -g
  46.  
  47. MV = mv
  48. RM = rm
  49.  
  50. prefix = /usr/local
  51. exec_prefix = $(prefix)
  52.  
  53. bindir = $(exec_prefix)/bin
  54. libdir = $(exec_prefix)/lib
  55.  
  56. mandir = $(prefix)/man
  57. man1dir = $(mandir)/man1
  58. man2dir = $(mandir)/man2
  59. man3dir = $(mandir)/man3
  60. man4dir = $(mandir)/man4
  61. man5dir = $(mandir)/man5
  62. man6dir = $(mandir)/man6
  63. man7dir = $(mandir)/man7
  64. man8dir = $(mandir)/man8
  65.  
  66. SHELL = /bin/sh
  67.  
  68. INSTALL = install -c
  69. INSTALL_DATA = $(INSTALL)
  70. INSTALL_PROGRAM = $(INSTALL)
  71.  
  72. #### End of system configuration section. ####
  73.  
  74. OBJS = main.o monitor.o error.o help.o commands.o asm.o \
  75.     opcodes.o regs.o bkpt.o dasm.o fill.o move.o \
  76.     set.o xcmd.o yank.o dump.o getdata.o io.o icmd.o mini2udi.o
  77.  
  78. LIBDFE = ../udi/libdfe.a
  79.  
  80. INCLUDE = -I$(srcdir)/../udi -I$(srcdir)/../include
  81.  
  82. .c.o:
  83.     $(CC) $(INCLUDE) $(DEFS) $(CFLAGS) -c $<
  84.  
  85. all:    mondfe
  86.  
  87. mondfe: $(LIBUDIDFE) $(OBJS)
  88.     $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBDFE) $(LIBIBERTY)
  89.  
  90. install: all
  91.  
  92. mostlyclean clean:
  93.     $(RM) -f *.o mondfe
  94.  
  95. distclean maintainer-clean realclean: clean
  96.     $(RM) -f Makefile config.status
  97.  
  98. .PHONY: check installcheck info install-info clean-info dvi
  99.  
  100. check installcheck:
  101.  
  102. info install-info clean-info dvi:
  103.  
  104. # with the gnu make, this is done automatically.
  105.  
  106. Makefile: Makefile.in 
  107.     $(SHELL) ./config.status
  108.  
  109. config.status: configure
  110.     $(srcdir)/configure --no-create
  111.  
  112. configure: configure.in
  113.     autoconf
  114.  
  115. # Prevent GNU make v3 from overflowing arg limit on SysV.
  116. .NOEXPORT:
  117.