diff options
author | Nick Clifton <nickc@redhat.com> | 2001-02-14 19:18:53 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-02-14 19:18:53 +0000 |
commit | 825b47db314ebcc4975662c32f9bfab97bb43d05 (patch) | |
tree | 068622af26f3bb17d8adc6302281412d4efe4c3a /bfd/Makefile.am | |
parent | a9f1078629b87bb73266591e78a090b7b8c2ad99 (diff) | |
download | gdb-825b47db314ebcc4975662c32f9bfab97bb43d05.zip gdb-825b47db314ebcc4975662c32f9bfab97bb43d05.tar.gz gdb-825b47db314ebcc4975662c32f9bfab97bb43d05.tar.bz2 |
Apply changes to Makefile.in to Makefile.am
Diffstat (limited to 'bfd/Makefile.am')
-rw-r--r-- | bfd/Makefile.am | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/bfd/Makefile.am b/bfd/Makefile.am index c1cd2df..7183954 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -389,7 +389,6 @@ BFD32_BACKENDS_CFILES = \ pei-sh.c \ pe-mips.c \ pei-mips.c \ - peigen.c \ ppcboot.c \ reloc16.c \ riscix.c \ @@ -425,7 +424,8 @@ BFD64_BACKENDS = \ elf64-sparc.lo \ elf64.lo \ nlm32-alpha.lo \ - nlm64.lo + nlm64.lo \ + pepigen.lo BFD64_BACKENDS_CFILES = \ aout64.c \ @@ -584,6 +584,16 @@ elf64-ia64.c : elfxx-ia64.c sed -e s/NN/64/g < $(srcdir)/elfxx-ia64.c > elf64-ia64.new mv -f elf64-ia64.new elf64-ia64.c +peigen.c : peXXigen.c + rm -f peigen.c + sed -e s/XX/pe/g < $(srcdir)/peXXigen.c > peigen.new + mv -f peigen.new peigen.c + +pepigen.c : peXXigen.c + rm -f pepigen.c + sed -e s/XX/pep/g < $(srcdir)/peXXigen.c > pepigen.new + mv -f pepigen.new pepigen.c + BFD_H_DEPS= $(INCDIR)/ansidecl.h LOCAL_H_DEPS= libbfd.h sysdep.h config.h $(BFD_LIBS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) @@ -1200,6 +1210,9 @@ pei-mips.lo: pei-mips.c $(INCDIR)/filenames.h pe-mips.c \ peigen.lo: peigen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \ $(INCDIR)/coff/i386.h $(INCDIR)/coff/pe.h libcoff.h \ $(INCDIR)/bfdlink.h libpei.h +pepigen.lo: pepigen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/ia64.h $(INCDIR)/coff/pe.h libcoff.h \ + $(INCDIR)/bfdlink.h libpei.h ppcboot.lo: ppcboot.c $(INCDIR)/filenames.h reloc16.lo: reloc16.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ genlink.h $(INCDIR)/coff/internal.h libcoff.h |