blob: d4affe41bf6ada882bf8ae79b555e8c8c375ce96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile.inc,v 1.3 1997/11/07 08:07:17 niklas Exp $
# $NetBSD: Makefile.inc,v 1.4 1996/05/20 00:48:43 thorpej Exp $
.if target(ncr53cxxx.o)
PATH: $S/dev/microcode/ncr53cxxx
ncr53cxxx.o: ncr53cxxx_seq.h
ncr53cxxx_seq.h: ncr53cxxx_asm $S/dev/microcode/ncr53cxxx/ncr53cxxx.seq
./ncr53cxxx_asm -o ${.TARGET} $S/dev/microcode/ncr53cxxx/ncr53cxxx.seq
ncr53cxxx_asm: $S/dev/microcode/ncr53cxxx/ncr53cxxx_asm.c
${HOSTCC} -U_KERNEL -o ${.TARGET} $<
clean::
rm -f ncr53cxxx_asm
.endif
|