diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-02-21 23:17:54 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-02-21 23:17:54 +0000 |
commit | 0d541fd9920e006280e60dadcdbd301c0b0e1d66 (patch) | |
tree | 1f92b0b3c9bb73f0740f3a77dfa9ca121a1f7555 /libexec/ld.so/Makefile | |
parent | 0ba9fd5be7b2c0adde410a88b340bfc1038e359c (diff) |
cleanup of MD/MI ld.so (elf), most changes by art@ cleanup by me.
tested on alpha sparc64 powerpc.
Diffstat (limited to 'libexec/ld.so/Makefile')
-rw-r--r-- | libexec/ld.so/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libexec/ld.so/Makefile b/libexec/ld.so/Makefile index 11aac544a01..33969261487 100644 --- a/libexec/ld.so/Makefile +++ b/libexec/ld.so/Makefile @@ -1,11 +1,12 @@ -# $OpenBSD: Makefile,v 1.11 2001/11/20 01:13:44 pvalchev Exp $ +# $OpenBSD: Makefile,v 1.12 2002/02/21 23:17:53 drahn Exp $ SUBDIR=ldconfig ldd VPATH=${.CURDIR}/../../lib/libc/string:${.CURDIR}/../../sys/lib/libsa NOMAN= SRCS= ldasm.S loader.c library.c resolve.c dlfcn.c dl_printf.c rtld_machine.c -SRCS+= sod.c strcmp.c strncmp.c strsep.c strtol.c strdup.c strcpy.c +SRCS+= util.c +SRCS+= sod.c strcmp.c strncmp.c strsep.c strtol.c OBJS+= strchr.o PROG= ld.so MAN= ld.so.8 @@ -17,7 +18,7 @@ AFLAGS += -fpic CFLAGS += -fpic -msoft-float .endif .if (${MACHINE_ARCH} == "alpha") -CFLAGS += -Werror +CFLAGS += -Werror -Wall -Wno-uninitialized CFLAGS += -fpic -mno-fp-regs LIBCSRCDIR=${.CURDIR}/../../lib/libc .include "${LIBCSRCDIR}/arch/alpha/Makefile.inc" |