diff options
author | flipk <flipk@cvs.openbsd.org> | 1997-07-30 19:40:59 +0000 |
---|---|---|
committer | flipk <flipk@cvs.openbsd.org> | 1997-07-30 19:40:59 +0000 |
commit | d3cae76cddc4f4a859541d25e0fa08663a1ae03c (patch) | |
tree | 6319a54ea0ce67a43eaa1faa4d70969727484a6b /sys/arch/i386/stand/etc/Makefile | |
parent | 20ada772741281fa167fa1943ed3757cf6081f1f (diff) |
mickey has pieces he has not committed.
if he puts the tree in an unbuildable state again..
anyway, all these problems came from the fact that etc/genassym.cf
wasn't even being used, and assym.h is where key defines were supposed
to be coming from. now we actually include etc/genassym.cf in the
genassym.sh processing, and remove the #includes i had in place to
work around it. now if mickey had committed machine/biosvar.h, etc/Makefile,
and these asm files all at the same time, there wouldn't have been
a problem....
Diffstat (limited to 'sys/arch/i386/stand/etc/Makefile')
-rw-r--r-- | sys/arch/i386/stand/etc/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/etc/Makefile b/sys/arch/i386/stand/etc/Makefile index a9fb86655ca..ed30d53cddb 100644 --- a/sys/arch/i386/stand/etc/Makefile +++ b/sys/arch/i386/stand/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1997/07/28 22:03:27 mickey Exp $ +# $OpenBSD: Makefile,v 1.2 1997/07/30 19:40:50 flipk Exp $ S= ${.CURDIR}/../../../.. I386= ${.CURDIR}/../.. @@ -13,12 +13,12 @@ machine-links: assym.h: $S/kern/genassym.sh ${I386}/i386/genassym.cf @echo '#define NISA 1' > isa.h @echo '#define NAPM 1' > apm.h + cat ${I386}/i386/genassym.cf ${.CURDIR}/genassym.cf | \ sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} \ - ${PARAM} < ${I386}/i386/genassym.cf > assym.h.tmp && \ - mv -f assym.h.tmp assym.h + ${PARAM} > assym.h.tmp && mv -f assym.h.tmp assym.h -clean: - @rm -f isa.h apm.h assym.h +clean cleandir: + rm -f isa.h apm.h assym.h .include <bsd.obj.mk> .include <bsd.subdir.mk> |