mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-15 15:31:43 -04:00
63 lines
2.3 KiB
Plaintext
63 lines
2.3 KiB
Plaintext
$NetBSD$
|
|
|
|
--- ld/Makefile.am.orig Mon Mar 25 08:06:23 2013
|
|
+++ ld/Makefile.am
|
|
@@ -145,12 +145,14 @@ ALL_EMULATION_SOURCES = \
|
|
earmelf_linux_eabi.c \
|
|
earmelf_nacl.c \
|
|
earmelf_nbsd.c \
|
|
+ earmelf_nbsd_eabi.c \
|
|
earmelf_vxworks.c \
|
|
earmelfb.c \
|
|
earmelfb_linux.c \
|
|
earmelfb_linux_eabi.c \
|
|
earmelfb_nacl.c \
|
|
earmelfb_nbsd.c \
|
|
+ earmelfb_nbsd_eabi.c \
|
|
earmnbsd.c \
|
|
earmnto.c \
|
|
earmpe.c \
|
|
@@ -731,6 +733,11 @@ earmelf_nbsd.c: $(srcdir)/emulparams/armelf_nbsd.sh \
|
|
$(ELF_DEPS) $(srcdir)/emultempl/armelf.em \
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
${GENSCRIPTS} armelf_nbsd "$(tdir_armelf_nbsd)"
|
|
+earmelf_nbsd_abi.c: $(srcdir)/emulparams/armelf_nbsd_abi.sh \
|
|
+ $(srcdir)/emulparams/armelf.sh \
|
|
+ $(ELF_DEPS) $(srcdir)/emultempl/armelf.em \
|
|
+ $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+ ${GENSCRIPTS} armelf_nbsd_abi "$(tdir_armelf_nbsd_abi)"
|
|
earmelf_vxworks.c: $(srcdir)/emulparams/armelf_vxworks.sh \
|
|
$(srcdir)/emulparams/vxworks.sh $(srcdir)/emulparams/armelf.sh \
|
|
$(ELF_DEPS) $(srcdir)/emultempl/vxworks.em \
|
|
@@ -766,6 +773,12 @@ earmelfb_nbsd.c: $(srcdir)/emulparams/armelfb_nbsd.sh
|
|
$(ELF_DEPS) $(srcdir)/emultempl/armelf.em \
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
${GENSCRIPTS} armelfb_nbsd "$(tdir_armelfb_nbsd)"
|
|
+earmelfb_nbsd_abi.c: $(srcdir)/emulparams/armelfb_nbsd_abi.sh \
|
|
+ $(srcdir)/emulparams/armelf_nbsd_abi.sh \
|
|
+ $(srcdir)/emulparams/armelf.sh \
|
|
+ $(ELF_DEPS) $(srcdir)/emultempl/armelf.em \
|
|
+ $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+ ${GENSCRIPTS} armelfb_nbsd_abi "$(tdir_armelfb_nbsd_abi)"
|
|
earmnbsd.c: $(srcdir)/emulparams/armnbsd.sh \
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
${GENSCRIPTS} armnbsd "$(tdir_armnbsd)"
|
|
@@ -2219,6 +2232,8 @@ endif
|
|
# because almost all configs use "gen" version of manual.
|
|
# Set DOCVER above to change.
|
|
configdoc.texi: ${DOCVER}-doc.texi
|
|
+ @echo "NOT REBUILDING $@"
|
|
+NetBSD_DISABLED_configdoc.texi:
|
|
cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi
|
|
chmod u+w ./configdoc.texi
|
|
|
|
@@ -2226,6 +2241,8 @@ configdoc.texi: ${DOCVER}-doc.texi
|
|
# The sed command removes the no-adjust Nroff command so that
|
|
# the man output looks standard.
|
|
ld.1: $(srcdir)/ld.texinfo configdoc.texi
|
|
+ @echo "NOT REBUILDING $@"
|
|
+NetBSD_DISABLED_ld.1:
|
|
touch $@
|
|
-$(TEXI2POD) $(MANCONF) < $(srcdir)/ld.texinfo > ld.pod
|
|
-($(POD2MAN) ld.pod | \
|