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 / sim / sh / Makefile.in < prev    next >
Makefile  |  1995-10-10  |  4KB  |  153 lines

  1. #    Makefile template for Configure for the SH sim library.
  2. #    Copyright (C) 1990, 1991, 1992, 1995 Free Software Foundation, Inc.
  3. #    Written by Cygnus Support.
  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 of the License, or
  7. # (at your option) any later version.
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with this program; if not, write to the Free Software
  14. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  15.  
  16. VPATH = @srcdir@:@srcdir@/../common:@srcdir@/../../gdb/
  17. srcdir = @srcdir@
  18. srcroot = $(srcdir)/../..
  19.  
  20. prefix = @prefix@
  21. exec_prefix = @exec_prefix@
  22.  
  23. host_alias = @host_alias@
  24. target_alias = @target_alias@
  25. program_transform_name = @program_transform_name@
  26. bindir = $(exec_prefix)/bin
  27.  
  28. libdir = $(exec_prefix)/lib
  29. tooldir = $(libdir)/$(target_alias)
  30.  
  31. datadir = $(prefix)/lib
  32. mandir = $(prefix)/man
  33. man1dir = $(mandir)/man1
  34. man2dir = $(mandir)/man2
  35. man3dir = $(mandir)/man3
  36. man4dir = $(mandir)/man4
  37. man5dir = $(mandir)/man5
  38. man6dir = $(mandir)/man6
  39. man7dir = $(mandir)/man7
  40. man8dir = $(mandir)/man8
  41. man9dir = $(mandir)/man9
  42. infodir = $(prefix)/info
  43. includedir = $(prefix)/include
  44. docdir = $(datadir)/doc
  45.  
  46. SHELL = /bin/sh
  47.  
  48. INSTALL = $(srcroot)/install.sh -c
  49. INSTALL_PROGRAM = $(INSTALL)
  50. INSTALL_DATA = $(INSTALL)
  51. INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
  52. INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1
  53.  
  54. AR = @AR@
  55. AR_FLAGS = rc
  56. CC = @CC@
  57. CFLAGS = @CFLAGS@
  58. MAKEINFO = makeinfo
  59. RANLIB = @RANLIB@
  60. CC_FOR_BUILD = @CC_FOR_BUILD@
  61.  
  62. HDEFINES = @HDEFINES@
  63. TDEFINES =
  64.  
  65. .NOEXPORT:
  66. MAKEOVERRIDES=
  67.  
  68. X=xstuff.o
  69. XL=-lX11
  70. X=
  71. XL=
  72.  
  73. INCDIR = $(srcdir)/../../include 
  74. CSEARCH = -I. -I$(srcdir)  -I../../include  \
  75.   -I../../bfd -I$(INCDIR) -I$(srcdir)/../../bfd -I$(srcdir)/../../gdb -I$(srcdir)/../../newlib/libc/sys/sh
  76. DEP = mkdep
  77.  
  78. all:    run libsim.a
  79.  
  80. run:    interp.o $(X) run.o table.o callback.o
  81.     $(CC) $(CFLAGS) -o run $(X) interp.o table.o callback.o run.o ../../bfd/libbfd.a ../../libiberty/libiberty.a $(XL) -lm
  82.  
  83. interp.o:interp.c code.c table.c
  84. run.o:run.c 
  85.  
  86. libsim.a:interp.o table.o
  87.     $(AR) $(ARFLAGS) libsim.a interp.o table.o
  88.     $(RANLIB) libsim.a
  89.  
  90. code.c:gencode
  91.     ./gencode -x >code.c
  92. #    indent code.c
  93.  
  94. table.c:gencode
  95.     ./gencode -s >table.c
  96. #    indent table.c
  97.  
  98. gencode:gencode.c
  99.     $(CC_FOR_BUILD) -o gencode $(srcdir)/gencode.c
  100.  
  101. .c.o:
  102.     $(CC) -c -DINSIDE_SIMULATOR $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
  103.  
  104. check:
  105.  
  106. info:
  107. clean-info:
  108. install-info:
  109.  
  110. tags etags: TAGS
  111.  
  112. TAGS: force
  113.     etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
  114.  
  115. clean:
  116.     rm -f *.[oa] *~ core *.E *.p *.ip aout-params.h gen-aout
  117.     rm -f run libsim.a
  118.  
  119. distclean mostlyclean maintainer-clean realclean: clean
  120.     rm -f TAGS
  121.     rm -f Makefile config.cache config.log config.status
  122.  
  123. # Dummy target to force execution of dependent targets.
  124. #
  125. force:
  126.  
  127. # Copy the files into directories where they will be run.
  128. install:
  129.     $(INSTALL_XFORM) run $(bindir)/run
  130.  
  131. install-man: run.1
  132.     $(INSTALL_XFORM1) $(srcdir)/run.1 $(man1dir)/run.1
  133.  
  134. Makefile: Makefile.in config.status
  135.     $(SHELL) ./config.status
  136.  
  137. config.status: configure
  138.     $(SHELL) ./config.status --recheck
  139.  
  140. dep: $(CFILES)
  141.     mkdep $(CFLAGS) $?
  142.  
  143. # What appears below is generated by a hacked mkdep using gcc -MM.
  144.  
  145. # DO NOT DELETE THIS LINE -- mkdep uses it.
  146. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
  147.  
  148.  
  149. # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
  150.