diff options
| author | cgd <cgd@NetBSD.org> | 1997-04-10 17:39:20 +0000 |
|---|---|---|
| committer | cgd <cgd@NetBSD.org> | 1997-04-10 17:39:20 +0000 |
| commit | aee2cfeaa160923a52d0d4f7dfcde20137833344 (patch) | |
| tree | adde2aceb7975c3953f26fe6ea8af4ae9231078d /libexec | |
| parent | c0515bc6f2bf0f6e521d4507c23c34baea39e2a2 (diff) | |
pull in arch-specific Makefile.inc only if it exists
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/ld.elf_so/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libexec/ld.elf_so/Makefile b/libexec/ld.elf_so/Makefile index 6ae810f3db0..39e0c9ba72a 100644 --- a/libexec/ld.elf_so/Makefile +++ b/libexec/ld.elf_so/Makefile @@ -1,10 +1,12 @@ -# $NetBSD: Makefile,v 1.2 1997/03/24 22:18:33 christos Exp $ +# $NetBSD: Makefile,v 1.3 1997/04/10 17:39:20 cgd Exp $ PROG= ld.elf_so # Adds SRCS, CFLAGS, LDFLAGS, etc. Must go first so MD startup source # is first. +.if exists(${.CURDIR}/${MACHINE_ARCH}/Makefile.inc) .include "${.CURDIR}/${MACHINE_ARCH}/Makefile.inc" +.endif SRCS+= rtld.c reloc.c symbol.c malloc.c xmalloc.c xprintf.c debug.c \ map_object.c load.c search.c headers.c paths.c |
