Fixup dependencies
This commit is contained in:
parent
52348e9646
commit
03c1c9cee0
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.sun3,v 1.58 1997/02/10 19:23:41 gwr Exp $
|
||||
# $NetBSD: Makefile.sun3,v 1.59 1997/03/17 20:59:47 gwr Exp $
|
||||
|
||||
# Makefile for NetBSD
|
||||
#
|
||||
|
@ -147,7 +147,8 @@ newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
|
|||
${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
|
||||
|
||||
|
||||
clean:
|
||||
clean: cleankernel
|
||||
cleankernel:
|
||||
rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
|
||||
[Ee]rrs linterrs makelinks genassym genassym.o assym.h
|
||||
|
||||
|
@ -182,18 +183,20 @@ depend: .depend
|
|||
#
|
||||
# For cross-compilation, the "gcc -M" mkdep script is convenient,
|
||||
# but that does not correctly make rules from *.s files. The
|
||||
# easiest compromise is to just list those dependencies here.
|
||||
locore.o: assym.h machine/trap.h m68k/trap.h
|
||||
copy.o: assym.h $S/sys/errno.h
|
||||
# easiest work-around is to just list those dependencies here.
|
||||
locore.o: assym.h m68k/asm.h m68k/trap.h
|
||||
copy.o: assym.h m68k/asm.h $S/sys/errno.h
|
||||
bcopy.o: assym.h m68k/asm.h
|
||||
copypage.o: assym.h m68k/asm.h
|
||||
|
||||
# depend on root or device configuration
|
||||
autoconf.o conf.o: Makefile
|
||||
conf.o: Makefile
|
||||
|
||||
# depend on network or filesystem configuration
|
||||
uipc_proto.o vfs_conf.o: Makefile
|
||||
|
||||
# depend on maxusers
|
||||
genassym.o machdep.o: Makefile
|
||||
machdep.o: Makefile
|
||||
|
||||
# depend on CPU configuration
|
||||
db_machdep.o dvma.o machdep.o pmap.o sun3_startup.o vm_machdep.o: Makefile
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.sun3x,v 1.9 1997/03/14 23:27:34 mycroft Exp $
|
||||
# $NetBSD: Makefile.sun3x,v 1.10 1997/03/17 20:59:48 gwr Exp $
|
||||
|
||||
# Makefile for NetBSD
|
||||
#
|
||||
|
@ -113,9 +113,6 @@ SYSTEM_LD_TAIL+=; \
|
|||
${STRIP} ${STRIPFLAGS} $@
|
||||
.else
|
||||
LINKFLAGS+= -S
|
||||
# XXX - temporary:
|
||||
SYSTEM_LD_TAIL+=; \
|
||||
dbsym $@
|
||||
.endif
|
||||
|
||||
# LOAD+
|
||||
|
@ -186,24 +183,23 @@ depend: .depend
|
|||
#
|
||||
# For cross-compilation, the "gcc -M" mkdep script is convenient,
|
||||
# but that does not correctly make rules from *.s files. The
|
||||
# easiest compromise is to just list those dependencies here.
|
||||
locore.o: assym.h machine/trap.h m68k/trap.h
|
||||
copy.o: assym.h $S/sys/errno.h
|
||||
# easiest work-around is to just list those dependencies here.
|
||||
locore.o: assym.h m68k/asm.h m68k/trap.h
|
||||
copy.o: assym.h m68k/asm.h $S/sys/errno.h
|
||||
bcopy.o: assym.h m68k/asm.h
|
||||
copypage.o: assym.h m68k/asm.h
|
||||
|
||||
# depend on root or device configuration
|
||||
autoconf.o conf.o: Makefile
|
||||
conf.o: Makefile
|
||||
|
||||
# depend on network or filesystem configuration
|
||||
uipc_proto.o vfs_conf.o: Makefile
|
||||
|
||||
# depend on maxusers
|
||||
genassym.o machdep.o: Makefile
|
||||
machdep.o: Makefile
|
||||
|
||||
# depend on CPU configuration
|
||||
db_machdep.o dvma.o machdep.o pmap.o sun3x_startup.o vm_machdep.o: Makefile
|
||||
|
||||
# depends on DDB symbol space
|
||||
db_aout.o : Makefile
|
||||
db_machdep.o dvma.o machdep.o pmap.o _startup.o vm_machdep.o: Makefile
|
||||
|
||||
# depends on KGDBDEV, KGDBRATE
|
||||
kgdb_stub.o: Makefile
|
||||
|
|
Loading…
Reference in New Issue