* Corrected rule for assym.h. In case genassym.sh fails assym.h
has to be removed and a non-zero exit value has to be provided to make. * Removed last references to genassym and genassym.o.
This commit is contained in:
parent
3eded68a05
commit
d90eb8ee1e
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.pc532,v 1.37 1997/02/04 05:08:40 perry Exp $
|
||||
# $NetBSD: Makefile.pc532,v 1.38 1997/02/08 09:33:27 matthias Exp $
|
||||
|
||||
# Makefile for NetBSD
|
||||
#
|
||||
|
@ -102,7 +102,7 @@ LINKFLAGS+= -S
|
|||
|
||||
assym.h: ${PC532}/pc532/genassym.cf $S/kern/genassym.sh
|
||||
sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} \
|
||||
<${PC532}/pc532/genassym.cf >assym.h || rm assym.h
|
||||
<${PC532}/pc532/genassym.cf >assym.h || rm assym.h && exit 1
|
||||
|
||||
param.c: $S/conf/param.c
|
||||
rm -f param.c
|
||||
|
@ -121,7 +121,7 @@ newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
|
|||
|
||||
clean:
|
||||
rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
|
||||
[Ee]rrs linterrs makelinks genassym genassym.o assym.h
|
||||
[Ee]rrs linterrs makelinks assym.h
|
||||
|
||||
lint:
|
||||
@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
|
||||
|
@ -155,7 +155,7 @@ autoconf.o conf.o: Makefile
|
|||
uipc_proto.o vfs_conf.o: Makefile
|
||||
|
||||
# depend on maxusers
|
||||
genassym.o machdep.o: Makefile
|
||||
machdep.o: Makefile
|
||||
|
||||
# depend on CPU configuration
|
||||
#: Makefile
|
||||
|
|
Loading…
Reference in New Issue