summaryrefslogtreecommitdiffstats
path: root/share/mk/bsd.prog.mk
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1997-04-19 14:36:49 +0000
committerbde <bde@FreeBSD.org>1997-04-19 14:36:49 +0000
commit02bd05d5f0d7499d97456e5f85a22d13046beab9 (patch)
tree321094e803fa96a0c738bb04000950b91357d059 /share/mk/bsd.prog.mk
parent7de64ed7774e2cfa9a3fd94e39045651b2118f0e (diff)
downloadFreeBSD-src-02bd05d5f0d7499d97456e5f85a22d13046beab9.zip
FreeBSD-src-02bd05d5f0d7499d97456e5f85a22d13046beab9.tar.gz
Removed unused (and almost unusable) support for LDONLY. See ld/rtld
for how to use gcc to invoke the linker only. Removed `.if 0'ed support for not creating intermediate object files. Removed unused include of bsd.libnames.mk (LDONLY had the last reference to it). Removed stale misplaced comment about MANDEPEND.
Diffstat (limited to 'share/mk/bsd.prog.mk')
-rw-r--r--share/mk/bsd.prog.mk28
1 files changed, 1 insertions, 27 deletions
diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk
index 82d9d7d..c89ffbb 100644
--- a/share/mk/bsd.prog.mk
+++ b/share/mk/bsd.prog.mk
@@ -1,5 +1,5 @@
# from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
-# $Id: bsd.prog.mk,v 1.46 1997/04/09 16:10:27 bde Exp $
+# $Id: bsd.prog.mk,v 1.47 1997/04/13 06:44:23 jkh Exp $
.if exists(${.CURDIR}/../Makefile.inc)
.include "${.CURDIR}/../Makefile.inc"
@@ -26,40 +26,19 @@ LDDESTDIR?= -L${DESTDIR}${SHLIBDIR} -L${DESTDIR}/usr/lib
# LDDESTDIR+= -nostdlib
.endif
-# XXX obsolescent.
-.include <bsd.libnames.mk>
-
.if defined(PROG)
.if defined(SRCS)
DPSRCS+= ${SRCS:M*.h}
OBJS+= ${SRCS:N*.h:R:S/$/.o/g}
-.if defined(LDONLY)
-
-# XXX is this used? -static in ${LDFLAGS} can't be passed here.
-${PROG}: ${DPSRCS} ${OBJS}
- ${LD} ${LDFLAGS} -o ${.TARGET} ${LIBCRT0} ${OBJS} ${LIBC} ${LDDESTDIR} \
- ${LDADD}
-
-.else defined(LDONLY)
-
${PROG}: ${DPSRCS} ${OBJS}
${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD}
-.endif
-
.else !defined(SRCS)
SRCS= ${PROG}.c
-.if 0
-${PROG}: ${DPSRCS} ${SRCS}
- ${CC} ${LDFLAGS} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} \
- ${LDDESTDIR} ${LDADD}
-
-MKDEP= -p
-.else
# Always make an intermediate object file because:
# - it saves time rebuilding when only the library has changed
# - the name of the object gets put into the executable symbol table instead of
@@ -68,7 +47,6 @@ MKDEP= -p
OBJS= ${PROG}.o
${PROG}: ${DPSRCS} ${OBJS}
${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD}
-.endif
.endif
@@ -79,10 +57,6 @@ MAN1= ${PROG}.1
.endif
.endif
-# XXX I think MANDEPEND is only used for groff. It should be named more
-# generally and perhaps not be in the maninstall dependencies now it is
-# here (or does maninstall always work when nothing is made?),
-
.MAIN: all
all: objwarn ${PROG} all-man _SUBDIR
OpenPOWER on IntegriCloud