mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Don't use `MKDEP= -p' even for the case of a single source file since we
always make an intermediate object file.
This commit is contained in:
parent
511cdd1649
commit
14c28f38a8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5188
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
# from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
|
# from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
|
||||||
# $Id: bsd.prog.mk,v 1.12 1994/11/13 21:05:27 phk Exp $
|
# $Id: bsd.prog.mk,v 1.13 1994/11/14 04:28:44 bde Exp $
|
||||||
|
|
||||||
.if exists(${.CURDIR}/../Makefile.inc)
|
.if exists(${.CURDIR}/../Makefile.inc)
|
||||||
.include "${.CURDIR}/../Makefile.inc"
|
.include "${.CURDIR}/../Makefile.inc"
|
||||||
|
@ -90,6 +90,8 @@ SRCS= ${PROG}.c
|
||||||
${PROG}: ${DPSRCS} ${SRCS} ${LIBC} ${DPADD}
|
${PROG}: ${DPSRCS} ${SRCS} ${LIBC} ${DPADD}
|
||||||
${CC} ${LDFLAGS} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} \
|
${CC} ${LDFLAGS} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} \
|
||||||
${LDDESTDIR} ${LDADD}
|
${LDDESTDIR} ${LDADD}
|
||||||
|
|
||||||
|
MKDEP= -p
|
||||||
.else
|
.else
|
||||||
# Always make an intermediate object file because:
|
# Always make an intermediate object file because:
|
||||||
# - it saves time rebuilding when only the library has changed
|
# - it saves time rebuilding when only the library has changed
|
||||||
|
@ -101,8 +103,6 @@ ${PROG}: ${DPSRCS} ${OBJS} ${LIBC} ${DPADD}
|
||||||
${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD}
|
${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD}
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
MKDEP= -p
|
|
||||||
|
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \
|
.if !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \
|
||||||
|
|
Loading…
Reference in a new issue