Updated for new kernel library Makefile.inc changes.
This commit is contained in:
parent
52ee4f3259
commit
ec6a28b4c7
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.arm32,v 1.21 1997/01/13 00:51:42 mark Exp $
|
||||
# $NetBSD: Makefile.arm32,v 1.22 1997/01/26 02:36:02 mark Exp $
|
||||
|
||||
# Makefile for NetBSD
|
||||
#
|
||||
|
@ -31,7 +31,7 @@ COPTS?= -O2
|
|||
.ifndef S
|
||||
S!= cd ../../../..; pwd
|
||||
.endif
|
||||
ARM32= ../..
|
||||
ARM32= $S/arch/arm32
|
||||
|
||||
INCLUDES= -I. -I$S/arch -I$S -nostdinc
|
||||
CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \
|
||||
|
@ -126,7 +126,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
|
||||
|
||||
|
@ -149,7 +150,7 @@ links:
|
|||
|
||||
SRCS= ${ARM32}/arm32/locore.S modedefs.c \
|
||||
param.c ioconf.c ${CFILES} ${SFILES}
|
||||
depend:: .depend
|
||||
depend: .depend
|
||||
.depend: ${SRCS} assym.h param.c
|
||||
${MKDEP} ${AFLAGS} ${CPPFLAGS} ${ARM32}/arm32/locore.S
|
||||
${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
|
||||
|
|
Loading…
Reference in New Issue