home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / src / binutils.2 / bfd / makefile.in < prev    next >
Encoding:
Makefile  |  1993-05-30  |  15.4 KB  |  442 lines

  1. #    Makefile template for Configure for the BFD library.
  2. #    Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  3. #    Written by Cygnus Support.
  4. # This file is part of BFD, the Binary File Descriptor library.
  5. # This program 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. # 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. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the Free Software
  15. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16.  
  17. srcdir = .
  18.  
  19. prefix = /usr/local
  20.  
  21. exec_prefix = $(prefix)
  22. bindir = $(exec_prefix)/bin
  23. libdir = $(exec_prefix)/lib
  24.  
  25. datadir = $(prefix)/lib
  26. mandir = $(prefix)/man
  27. man1dir = $(mandir)/man1
  28. man2dir = $(mandir)/man2
  29. man3dir = $(mandir)/man3
  30. man4dir = $(mandir)/man4
  31. man5dir = $(mandir)/man5
  32. man6dir = $(mandir)/man6
  33. man7dir = $(mandir)/man7
  34. man8dir = $(mandir)/man8
  35. man9dir = $(mandir)/man9
  36. infodir = $(prefix)/info
  37. includedir = $(prefix)/include
  38. oldincludedir =
  39. docdir = doc
  40.  
  41. SHELL = /bin/sh
  42.  
  43. INSTALL = install -c
  44. INSTALL_PROGRAM = $(INSTALL)
  45. INSTALL_DATA = $(INSTALL)
  46.  
  47. AR = ar
  48. AR_FLAGS = rc
  49. CFLAGS = -g
  50. BISON = bison
  51. MAKEINFO = makeinfo
  52. RANLIB = ranlib
  53.  
  54. CC_FOR_BUILD = $(CC)
  55.  
  56. INCDIR = $(srcdir)/../include
  57. CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
  58. DEP = mkdep
  59.  
  60. SUBDIRS = doc
  61.  
  62.  
  63. # Change this (to MINIMIZE=1) to save space in executables.
  64. # Currently, all this does is control the target_vector in targets.c.
  65. MINIMIZE=0
  66.  
  67. TARGETLIB = libbfd.a
  68.  
  69.  
  70. BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
  71.     archures.o core.o section.o format.o syms.o reloc.o init.o \
  72.     ctor.o seclet.o coffgen.o reloc16.o
  73.  
  74. BFD_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \
  75.     cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o cpu-hppa.o \
  76.     cpu-z8k.o cpu-we32k.o cpu-h8500.o cpu-alpha.o cpu-sh.o
  77.  
  78. BFD_BACKENDS = aout32.o sunos.o newsos3.o mipsbsd.o aout-adobe.o \
  79.     i386aout.o i386bsd.o i386linux.o \
  80.     aout64.o demo64.o \
  81.     coff-i960.o coff-a29k.o coff-m68k.o coff-i386.o coff-m88k.o \
  82.     coff-rs6000.o coff-h8300.o coff-h8500.o coff-z8k.o coff-we32k.o \
  83.     coff-mips.o coff-msym.o \
  84.     elf32.o elf32-sparc.o elf32-i386.o elf32-i860.o elf32-m68k.o \
  85.     elf32-hppa.o \
  86.     bout.o \
  87.     hppa.o oasys.o ieee.o srec.o stab-syms.o coff-alpha.o coff-sh.o \
  88.     hp300hpux.o
  89.  
  90. OPTIONAL_BACKENDS = trad-core.o
  91.  
  92. #### host and target dependent Makefile fragments come in here.
  93. ###
  94.  
  95. FLAGS_TO_PASS = \
  96.     "prefix=$(prefix)" \
  97.     "exec_prefix=$(exec_prefix)" \
  98.     "against=$(against)" \
  99.     "AR=$(AR)" \
  100.     "AR_FLAGS=$(AR_FLAGS)" \
  101.     "CC=$(CC)" \
  102.     "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
  103.     "CFLAGS=$(CFLAGS)" \
  104.     "RANLIB=$(RANLIB)" \
  105.     "MAKEINFO=$(MAKEINFO)" \
  106.     "INSTALL=$(INSTALL)" \
  107.     "INSTALL_DATA=$(INSTALL_DATA)" \
  108.     "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
  109.     "BISON=$(BISON)"
  110.  
  111. .c.o:
  112.     $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
  113.  
  114. BFD_H=$(INCDIR)/bfd.h
  115.  
  116. # C source files that correspond to .o's.
  117. CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
  118.      archures.c coff-i386.c aout64.c aout32.c sunos.c demo64.c \
  119.      coff-i960.c srec.c tekhex.c oasys.c ieee.c coff-m68k.c \
  120.      coff-a29k.c coff-rs6000.c coff-msym.c coffgen.c format.c \
  121.      section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \
  122.      seclet.c coff-m88k.c coff-mips.c coff-sh.c trad-core.c newsos3.c \
  123.      i386aout.c i386linux.c bout.c aout-adobe.c coff-we32k.c \
  124.      i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \
  125.      cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c \
  126.      cpu-rs6000.c coff-h8300.c hppa.c cpu-hppa.c cpu-we32k.c reloc16.c \
  127.      mipsbsd.c cpu-sh.c \
  128.      elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \
  129.      elf32-hppa.c \
  130.      coff-alpha.c cpu-alpha.c \
  131.      hp300hpux.c
  132.  
  133. STAGESTUFF = $(TARGETLIB) $(OFILES)
  134.  
  135. all: Makefile $(TARGETLIB) 
  136.     @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  137.  
  138. .NOEXPORT:
  139. MAKEOVERRIDES=
  140.  
  141. check:
  142. installcheck:
  143.  
  144. info dvi : force
  145.     @$(MAKE) subdir_do DO=$@ "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  146.  
  147. clean-info:
  148.     @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  149.     
  150. install-info: force
  151.     @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  152.  
  153. # HDEPFILES comes from the host config; TDEPFILES from the target config.
  154. OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
  155.  
  156. $(TARGETLIB): $(OFILES)
  157.      rm -f $(TARGETLIB)
  158.      $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
  159.      $(RANLIB) $(TARGETLIB)
  160.  
  161. # When compiling archures.c and targets.c, supply the default target
  162. # info from configure.
  163.  
  164.  
  165. targets.o: targets.c
  166.     $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
  167.  
  168. archures.o: archures.c
  169.     $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
  170.  
  171. subdir_do: force
  172.     @for i in $(DODIRS); do \
  173.         if [ -d ./$$i ] ; then \
  174.             if (cd ./$$i; \
  175.                 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
  176.             else exit 1 ; fi ; \
  177.         else true ; fi ; \
  178.     done
  179.  
  180. tags etags: TAGS
  181.  
  182. TAGS: force
  183.     etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
  184.  
  185. do_mostlyclean:
  186.     rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout
  187. do_clean: do_mostlyclean
  188.     rm -f libbfd.a TAGS
  189. do_distclean: do_clean
  190.     rm -f Makefile config.status sysdep.h
  191. do_realclean: do_distclean
  192.  
  193. mostlyclean: do_mostlyclean
  194.     $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  195. clean: do_clean
  196.     $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  197. distclean:
  198.     $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  199.     make do_distclean
  200. clobber realclean:
  201.     $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  202.     make do_realclean
  203.  
  204. # Mark everything as depending on config.status, since the timestamp on
  205. # sysdep.h might actually move backwards if we reconfig and relink it
  206. # to a different hosts/h-xxx.h file.  This will force a recompile anyway.
  207. RECONFIG = config.status
  208. $(BFD_LIBS):  libbfd.h $(BFD_H) $(RECONFIG)
  209. $(BFD_MACHINES):  libbfd.h $(BFD_H) $(RECONFIG)
  210. $(BFD_BACKENDS):  libbfd.h $(BFD_H) $(RECONFIG)
  211. $(OPTIONAL_BACKENDS):  libbfd.h $(BFD_H) $(RECONFIG)
  212.  
  213. # Get around a Sun Make bug in SunOS 4.1.1 with VPATH
  214. cpu-i386.o:cpu-i386.c
  215. cpu-z8k.o: cpu-z8k.c
  216. cpu-h8500.o: cpu-h8500.c
  217. cpu-we32k.o: cpu-we32k.c
  218.  
  219. saber:
  220.     #suppress 65 on bfd_map_over_sections 
  221.     #suppress 66 on bfd_map_over_sections 
  222.     #suppress 67 on bfd_map_over_sections 
  223.     #suppress 68 on bfd_map_over_sections 
  224.     #suppress 69 on bfd_map_over_sections 
  225.     #suppress 70 on bfd_map_over_sections 
  226.     #suppress 110 in bfd_map_over_sections 
  227.     #suppress 112 in bfd_map_over_sections 
  228.     #suppress 530 
  229.     #suppress 590 in swap_exec_header 
  230.     #suppress 590 in _bfd_dummy_core_file_matches_executable_p 
  231.     #suppress 590 in bfd_dont_truncate_arname
  232.     #suppress 590 on ignore 
  233.     #suppress 590 on abfd 
  234.     #setopt load_flags $(CFLAGS)
  235.     #load $(CFILES)
  236.  
  237.  
  238. #-----------------------------------------------------------------------------
  239. #        'STANDARD' GNU/960 TARGETS BELOW THIS POINT
  240. #
  241. # 'VERSION' file must be present and contain a string of the form "x.y"
  242. #-----------------------------------------------------------------------------
  243.  
  244. ver960.c: FORCE
  245.     rm -f ver960.c
  246.     echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
  247.  
  248.  
  249. # This target should be invoked before building a new release.
  250. # 'VERSION' file must be present and contain a string of the form "x.y"
  251. #
  252. roll:
  253.     @V=`cat VERSION`        ; \
  254.     MAJ=`sed 's/\..*//' VERSION`    ; \
  255.     MIN=`sed 's/.*\.//' VERSION`    ; \
  256.     V=$$MAJ.`expr $$MIN + 1`    ; \
  257.     rm -f VERSION            ; \
  258.     echo $$V >VERSION        ; \
  259.     echo Version $$V
  260.  
  261. # Dummy target to force execution of dependent targets.
  262. #
  263. force:
  264.  
  265. install:
  266.     -parent=`echo $(libdir)|sed -e 's@/[^/]*$$@@'`; \
  267.     if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
  268.     -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
  269.     $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
  270.     $(RANLIB) $(libdir)/libbfd.a
  271.     -parent=`echo $(includedir)|sed -e 's@/[^/]*$$@@'`; \
  272.     if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
  273.     -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
  274.     # Install BFD include file, and others that it needs.  Install them
  275.     # both in GCC's include directory, and in the system include dir
  276.     # if configured as $(oldincludedir) -- which it usually isnt.
  277.     $(INSTALL_DATA) $(INCDIR)/bfd.h $(includedir)/bfd.h
  278.     $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h
  279.     $(INSTALL_DATA) $(INCDIR)/obstack.h $(includedir)/obstack.h
  280.     -if [ -z "$(oldincludedir)" ] ; then true ; \
  281.      else if [ -d $(oldincludedir) ] ; then true ; \
  282.           else mkdir $(oldincludedir) ; \
  283.           fi ; \
  284.           $(INSTALL_DATA) $(INCDIR)/bfd.h      $(oldincludedir)/bfd.h;\
  285.           $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(oldincludedir)/ansidecl.h;\
  286.           $(INSTALL_DATA) $(INCDIR)/obstack.h  $(oldincludedir)/obstack.h;\
  287.      fi
  288.     @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  289.  
  290.  
  291. Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
  292.     $(SHELL) ./config.status
  293.  
  294. dep: $(CFILES)
  295.     mkdep $(CFLAGS) $?
  296.  
  297. host-aout.o: Makefile
  298.  
  299. # The following program can be used to generate a simple config file
  300. # which can be folded into an h-XXX file for a new host, with some editing.
  301. aout-params.h: gen-aout
  302.     ./gen-aout > aout-params.h
  303. gen-aout: $(srcdir)/gen-aout.c Makefile
  304.     $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
  305.  
  306. headers:
  307.     (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
  308.     # Could really use a "copy-if-change"...
  309.     cp $(docdir)/bfd.h bfd.h-new
  310.     $(srcdir)/../move-if-change bfd.h-new $(BFD_H)
  311.     cp $(docdir)/libbfd.h libbfd.h-new
  312.     $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
  313.     cp $(docdir)/libcoff.h libcoff.h-new
  314.     $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
  315.  
  316. bfd.info:
  317.     (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS))
  318.  
  319. bfd.dvi:
  320.     (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS))
  321.  
  322. bfd.ps: 
  323.     (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS))
  324.  
  325. # What appears below is generated by a hacked mkdep using gcc -MM.
  326.  
  327. # DO NOT DELETE THIS LINE -- mkdep uses it.
  328. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
  329.  
  330. libbfd.o : libbfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h 
  331. opncls.o : opncls.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h 
  332. bfd.o : bfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  333.   $(INCDIR)/coff/sym.h libecoff.h
  334. archive.o : archive.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  335.   $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h 
  336. targets.o : targets.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h 
  337. cache.o : cache.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h 
  338. archures.o : archures.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h 
  339. aout64.o : aout64.c 
  340. aout32.o : aout32.c aoutx.h $(INCDIR)/bfd.h $(INCDIR)/ansidecl.h \
  341.   $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
  342.   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h 
  343. sunos.o : sunos.c aoutf1.h $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
  344.   libaout.h libbfd.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
  345.   $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h 
  346. demo64.o : demo64.c 
  347.  
  348. srec.o : srec.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h 
  349. oasys.o : oasys.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  350.   $(INCDIR)/oasys.h liboasys.h 
  351. ieee.o : ieee.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  352.   $(INCDIR)/ieee.h libieee.h 
  353. coff-h8300.o: coff-h8300.c  $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  354.   $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  355.   coffswap.h seclet.h 
  356. coff-h8500.o: coff-h8500.c  $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  357.   $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  358.   coffswap.h seclet.h 
  359. coff-a29k.o: coff-a29k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  360.   $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  361.   coffswap.h seclet.h
  362. coff-i386.o: coff-i386.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  363.   $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  364.   coffswap.h seclet.h 
  365. coff-i960.o: coff-i960.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  366.   $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  367.   coffswap.h seclet.h 
  368. coff-m68k.o: coff-m68k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  369.   $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  370.   coffswap.h seclet.h 
  371. coff-m88k.o: coff-m88k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  372.   $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  373.   coffswap.h seclet.h 
  374. coff-mips.o: coff-mips.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  375.   $(INCDIR)/coff/mips.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  376.   coffswap.h seclet.h libecoff.h
  377. coff-rs6000.o: coff-rs6000.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  378.   $(INCDIR)/coff/rs6000.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  379.   coffswap.h seclet.h
  380. coff-z8k.o: coff-z8k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  381.   $(INCDIR)/coff/z8k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  382.   coffswap.h seclet.h
  383. coff-we32k.o: coff-we32k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  384.   $(INCDIR)/coff/we32k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
  385.   coffswap.h seclet.h
  386. coffgen.o: coffgen.c $(INCDIR)/bfd.h libbfd.h $(INCDIR)/coff/internal.h \
  387.   libcoff.h
  388. reloc16.o: reloc16.c $(INCDIR)/bfd.h libbfd.h $(INCDIR)/coff/internal.h \
  389.   libcoff.h seclet.h
  390. format.o : format.c $(INCDIR)/bfd.h \
  391.   $(INCDIR)/obstack.h libbfd.h 
  392. section.o : section.c $(INCDIR)/bfd.h \
  393.   $(INCDIR)/obstack.h libbfd.h 
  394. core.o : core.c $(INCDIR)/bfd.h \
  395.   $(INCDIR)/obstack.h libbfd.h 
  396. syms.o : syms.c $(INCDIR)/bfd.h \
  397.   $(INCDIR)/obstack.h libbfd.h 
  398. syms.o : stab-syms.c
  399. reloc.o : reloc.c $(INCDIR)/bfd.h \
  400.   $(INCDIR)/obstack.h libbfd.h 
  401.  
  402. trad-core.o : trad-core.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
  403.   libbfd.h libaout.h 
  404.  
  405. coff-msym.o: coff-msym.c $(INCDIR)/bfd.h  $(INCDIR)/coff/ecoff-ext.h \
  406.   $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h
  407.  
  408. newsos3.o : newsos3.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  409.   $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  410.   $(INCDIR)/aout/ar.h libaout.h 
  411. i386aout.o : i386aout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  412.   $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  413.   $(INCDIR)/aout/ar.h libaout.h 
  414. i386linux.o : i386linux.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  415.   $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  416.   $(INCDIR)/aout/ar.h libaout.h
  417. i386bsd.o : i386bsd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  418.   $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  419.   $(INCDIR)/aout/ar.h libaout.h 
  420. bout.o : bout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
  421.   $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
  422. mipsbsd.o : mipsbsd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
  423.   libbfd.h libaout.h
  424. elf32.o : elf32.c libelf.h libbfd.h $(INCDIR)/bfd.h $(INCDIR)/obstack.h
  425. elf32-sparc.o : elf32-sparc.c libelf.h libbfd.h $(INCDIR)/bfd.h \
  426.   $(INCDIR)/obstack.h
  427. elf32-m68k.o : elf32-m68k.c libelf.h libbfd.h $(INCDIR)/bfd.h \
  428.   $(INCDIR)/obstack.h
  429. elf32-i860.o : elf32-i860.c libelf.h libbfd.h $(INCDIR)/bfd.h \
  430.   $(INCDIR)/obstack.h
  431. elf32-i386.o : elf32-i386.c libelf.h libbfd.h $(INCDIR)/bfd.h \
  432.   $(INCDIR)/obstack.h
  433. elf32-hppa.o : elf32-hppa.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \
  434.   $(INCDIR)/bfd.h $(INCDIR)/obstack.h
  435.  
  436. # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
  437.  
  438.