Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sbin/fdisk/mbr_bootsel don't use OBJS in the dependency line...



details:   https://anonhg.NetBSD.org/src/rev/dfe9f9ea2a4e
branches:  trunk
changeset: 502249:dfe9f9ea2a4e
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Jan 14 09:22:01 2001 +0000

description:
don't use OBJS in the dependency line because it is not defined yet.

diffstat:

 sbin/fdisk/mbr_bootsel/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r deef153b6f59 -r dfe9f9ea2a4e sbin/fdisk/mbr_bootsel/Makefile
--- a/sbin/fdisk/mbr_bootsel/Makefile   Sun Jan 14 09:21:24 2001 +0000
+++ b/sbin/fdisk/mbr_bootsel/Makefile   Sun Jan 14 09:22:01 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.4 2000/02/11 16:14:33 hubertf Exp $
+#      $NetBSD: Makefile,v 1.5 2001/01/14 09:22:01 christos Exp $
 
 BINDIR=        /usr/mdec
 BINMODE=444
@@ -17,7 +17,7 @@
 LDFLAGS+= -e _start -N
 .endif
 
-${PROG}: ${OBJS}
+${PROG}: ${SRCS:S/.S/.o/g}
        ${LD} -o ${PROG}.tmp ${LDFLAGS} -Ttext 0x600 ${OBJS}
        ${STRIP} ${PROG}.tmp
        objcopy -O binary ${PROG}.tmp ${PROG}



Home | Main Index | Thread Index | Old Index