diff options
Diffstat (limited to 'sys/dev/microcode/aic7xxx/Makefile')
-rw-r--r-- | sys/dev/microcode/aic7xxx/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/microcode/aic7xxx/Makefile b/sys/dev/microcode/aic7xxx/Makefile index 1234df894d6..727fca11b29 100644 --- a/sys/dev/microcode/aic7xxx/Makefile +++ b/sys/dev/microcode/aic7xxx/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 2002/06/30 18:25:58 smurph Exp $ +# $OpenBSD: Makefile,v 1.6 2003/12/24 22:40:16 krw Exp $ # $FreeBSD: src/sys/dev/aic7xxx/Makefile,v 1.6 1999/08/28 00:41:22 peter Exp $ PROG= aicasm @@ -9,7 +9,7 @@ GENSRCS= aicasm_gram.c aicasm_scan.c aicasm_macro_gram.c aicasm_macro_scan.c GENHDRS= y.tab.h SRCS= ${GENSRCS} ${CSRCS} -CLEANFILES+= ${GENSRCS} ${GENHDRS} y.output aic7xxxreg.h +CLEANFILES+= ${GENSRCS} ${GENHDRS} y.output DPADD+= ${LIBL} LDADD+= -ll @@ -32,15 +32,15 @@ LFLAGS+= -d SEQFLAGS= -l seq.lst .endif -microcode aic7xxxreg.h aic7xxx_seq.h: aic7xxx.seq aic7xxx.reg +microcode aic7xxx_reg.h aic7xxx_seq.h: aic7xxx.seq aic7xxx.reg ${OBJDIR}./aicasm -I/sys ${SEQFLAGS} -r tempreg.h -o tempseq.h ${.CURDIR}/aic7xxx.seq grep OpenBSD: ${.CURDIR}/aic7xxx.seq | cat - tempseq.h > aic7xxx_seq.h - grep OpenBSD: ${.CURDIR}/aic7xxx.reg | cat - tempreg.h > aic7xxxreg.h + grep OpenBSD: ${.CURDIR}/aic7xxx.reg | cat - tempreg.h > aic7xxx_reg.h mv aic7xxx_seq.h /sys/dev/microcode/aic7xxx/ .ifdef DEBUG mv seq.lst /sys/dev/microcode/aic7xxx/ .endif - cp aic7xxxreg.h /sys/dev/ic/ + mv aic7xxx_reg.h /sys/dev/microcode/aic7xxx/ rm -f tempseq.h tempreg.h .include <bsd.prog.mk> |