diff options
-rw-r--r-- | sys/arch/i386/stand/etc/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/etc/Makefile b/sys/arch/i386/stand/etc/Makefile index e716aa87568..8227ce1e855 100644 --- a/sys/arch/i386/stand/etc/Makefile +++ b/sys/arch/i386/stand/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1997/07/30 20:47:43 mickey Exp $ +# $OpenBSD: Makefile,v 1.4 1997/09/17 22:51:49 weingart Exp $ S= ${.CURDIR}/../../../.. I386= ${.CURDIR}/../.. @@ -10,11 +10,15 @@ machine-links: @ln -fs ${.CURDIR}/../.. i386 @ln -fs ${.CURDIR}/../../include machine +depend:: assym.h + assym.h: $S/kern/genassym.sh ${.CURDIR}/genassym.cf sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} \ ${PARAM} < ${.CURDIR}/genassym.cf > assym.h.tmp && \ mv -f assym.h.tmp assym.h +cleandir: clean + clean: @rm -f isa.h apm.h assym.h |