diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2005-06-16 08:23:50 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2005-06-16 08:23:50 +0000 |
commit | 1fd31d1d2eb1b3061f871caf672d19a9c8b8b8a1 (patch) | |
tree | 36256cdde9783242f161ac297426fee0bc9dfa7b /sys/dev/microcode/atmel | |
parent | 35499cfa1d35b697a2b4fc1f51ad992ab4e17bc4 (diff) |
fix dependencies; from alexander bluhm; ok deraadt
Diffstat (limited to 'sys/dev/microcode/atmel')
-rw-r--r-- | sys/dev/microcode/atmel/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/sys/dev/microcode/atmel/Makefile b/sys/dev/microcode/atmel/Makefile index ba1263c8f92..abc899bc833 100644 --- a/sys/dev/microcode/atmel/Makefile +++ b/sys/dev/microcode/atmel/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 2005/03/08 11:50:39 dlg Exp $ +# $OpenBSD: Makefile,v 1.11 2005/06/16 08:23:49 markus Exp $ NOPROG= NOMAN= @@ -18,11 +18,17 @@ FIRM= atu-intersil-int atu-intersil-ext \ atu-at76c503-rfmd-acc-int atu-at76c503-rfmd-acc-ext \ atu-at76c505-rfmd-int atu-at76c505-rfmd-ext -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 @@ -31,4 +37,3 @@ afterinstall: .endif .include <bsd.prog.mk> - |