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