diff options
Diffstat (limited to 'sys/dev/microcode/kue/Makefile')
-rw-r--r-- | sys/dev/microcode/kue/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/sys/dev/microcode/kue/Makefile b/sys/dev/microcode/kue/Makefile index 60960d155cd..69eb4291487 100644 --- a/sys/dev/microcode/kue/Makefile +++ b/sys/dev/microcode/kue/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2005/04/28 04:35:16 david Exp $ +# $OpenBSD: Makefile,v 1.4 2005/06/16 08:23:49 markus Exp $ NOPROG= NOMAN= @@ -12,11 +12,17 @@ NOMAN= FIRM= kue -CLEANFILES+= ${FIRM} build +PROG= build -all: build +CLEANFILES+= ${FIRM} ${PROG} + +all: ${FIRM} + +${FIRM}: build ${.OBJDIR}/build +realinstall: + afterinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ ${FIRM} ${DESTDIR}/etc/firmware @@ -25,4 +31,3 @@ afterinstall: .endif .include <bsd.prog.mk> - |