diff options
author | John Birrell <jb@FreeBSD.org> | 1998-03-11 20:41:55 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 1998-03-11 20:41:55 +0000 |
commit | f672a042cf618b3843ff0f9113231ed20c7e0f0c (patch) | |
tree | 6c1149ea8a2ac1937e0c3a7ef61968339b5ae5e3 /lib/csu/alpha | |
parent | 1901906aa64bd0e3659fda2f9ad480fdbeaf0a93 (diff) | |
download | src-test2-f672a042cf618b3843ff0f9113231ed20c7e0f0c.tar.gz src-test2-f672a042cf618b3843ff0f9113231ed20c7e0f0c.zip |
Notes
Diffstat (limited to 'lib/csu/alpha')
-rw-r--r-- | lib/csu/alpha/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/csu/alpha/Makefile b/lib/csu/alpha/Makefile index e25f05066d4b..63d64ef9fbba 100644 --- a/lib/csu/alpha/Makefile +++ b/lib/csu/alpha/Makefile @@ -1,10 +1,9 @@ # -# $Id: Makefile,v 1.1.1.1 1998/03/07 20:27:10 jdp Exp $ +# $Id: Makefile,v 1.2 1998/03/10 07:04:05 jb Exp $ # -.PATH: ${.CURDIR}/../i386-elf -SRCS= crt1.c crtbegin.c crtend.c crti.S crtn.S -OBJS= ${SRCS:N*.h:R:S/$/.o/g} +SRCS= crt1.c crtbegin.c crtend.c +OBJS= crt1.o crtbegin.o crtend.o SOBJS= crtbegin.so crtend.so CFLAGS+= -Wall -Wno-unused NOMAN= true @@ -12,6 +11,10 @@ NOPIC= true NOPROFILE= true INTERNALLIB= true +.ifndef BOOTSTRAP +CFLAGS+= -DHAVE_RTLD -I${.CURDIR}/../../../libexec/rtld-elf +.endif + all: ${OBJS} ${SOBJS} realinstall: |