Okay, so I was confused (but only a little).

This commit is contained in:
mycroft 1993-04-18 18:56:24 +00:00
parent 5554f0dc1c
commit 5ef591fb1b
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# @(#)Makefile 5.12 (Berkeley) 3/7/91
#
# $Header: /cvsroot/src/sbin/dump/Makefile,v 1.5 1993/04/18 18:39:26 mycroft Exp $
# $Header: /cvsroot/src/sbin/dump/Makefile,v 1.6 1993/04/18 18:56:24 mycroft Exp $
# dump.h header file
# dumpitime.c reads /etc/dumpdates
@ -25,7 +25,7 @@ CLEANFILES=dumprmain.o dumprtape.o dumprmt.o rdump
all: rdump
rdump: ${ROBJS} ${LIBC}
${CC} ${STRIP} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${ROBJS} ${LDADD}
${CC} ${LDFLAGS} -o ${.TARGET} ${ROBJS} ${LDADD}
dumprmain.o: dumpmain.o
${CC} -c -DRDUMP ${CFLAGS} ${.CURDIR}/dumpmain.c -o ${.TARGET}

View File

@ -11,7 +11,7 @@ CLEANFILES+=dumprmt.o rtape.o rrestore
all: rrestore
rrestore: ${ROBJS} ${LIBC}
${CC} ${STRIP} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${ROBJS} ${LDADD}
${CC} ${LDFLAGS} -o ${.TARGET} ${ROBJS} ${LDADD}
rtape.o: tape.c ${LIBC}
${CC} ${CFLAGS} -c -DRRESTORE ${.CURDIR}/tape.c -o ${.TARGET}