NetBSD/gnu/usr.bin/ld/Makefile.inc
aymeric d2b58bf21f Make it possible to compile a cross-linker by just defining TARGET_MACHINE_ARCH
to the desired architecture.

Note that this is for the old ld of the old toolchain.
2001-07-25 11:58:04 +00:00

15 lines
477 B
Makefile

# $NetBSD: Makefile.inc,v 1.4 2001/07/25 11:58:04 aymeric Exp $
SHLIBPATH = $(.CURDIR)/../../../../libexec/ld.aout_so
TARGET_MACHINE_ARCH ?= $(MACHINE_ARCH)
.if $(TARGET_MACHINE_ARCH) != $(MACHINE_ARCH)
CPPFLAGS += -DCROSS_LINKER -DXHOST="$(MACHINE_ARCH)"
.endif
CPPFLAGS += -I$(SHLIBPATH) -I$(SHLIBPATH)/arch/$(TARGET_MACHINE_ARCH) -I$(.CURDIR)
.PATH: $(SHLIBPATH) $(SHLIBPATH)/arch/$(TARGET_MACHINE_ARCH)
CFLAGS += -Wall -Wstrict-prototypes -Wmissing-prototypes