diff options
author | Brandon Creighton <bjc@cvs.openbsd.org> | 2000-04-27 02:34:51 +0000 |
---|---|---|
committer | Brandon Creighton <bjc@cvs.openbsd.org> | 2000-04-27 02:34:51 +0000 |
commit | 204e11e3802aa3e6340311c7f842be2205fcd3e0 (patch) | |
tree | 5b1fb513b23c0c50d5495f04e12cc8b8e66866b8 /sys/arch/vax/stand/Makefile.inc | |
parent | 56644002c5cb52c79e4f6d8eadc328882f24df33 (diff) |
forgot these, oops
Diffstat (limited to 'sys/arch/vax/stand/Makefile.inc')
-rw-r--r-- | sys/arch/vax/stand/Makefile.inc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/arch/vax/stand/Makefile.inc b/sys/arch/vax/stand/Makefile.inc new file mode 100644 index 00000000000..00fb9fa1f39 --- /dev/null +++ b/sys/arch/vax/stand/Makefile.inc @@ -0,0 +1,13 @@ +# $OpenBSD: Makefile.inc,v 1.1 2000/04/27 02:34:50 bjc Exp $ +# $NetBSD: Makefile.inc,v 1.2 1999/07/18 05:55:45 abs Exp $ + +XXRPB=0x1F4240 +RELOC=0x2f0000 +.PATH: ${.CURDIR}/../../vax ${.CURDIR}/../common + +CPPFLAGS+=-I${.CURDIR}/../../../../ -I${.CURDIR}/../../ -I${.CURDIR}/../common -I${.CURDIR}/../../include +CPPFLAGS+=-DXXRPB=${XXRPB} -DRELOC=${RELOC} + +# Private handling of assembler files. +.s.o: + ${CC} -x assembler-with-cpp ${CPPFLAGS} -E ${.IMPSRC} | as -o ${.TARGET} |