diff options
Diffstat (limited to 'sys/dev/microcode/uyap/Makefile')
-rw-r--r-- | sys/dev/microcode/uyap/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sys/dev/microcode/uyap/Makefile b/sys/dev/microcode/uyap/Makefile new file mode 100644 index 00000000000..8aa599e274b --- /dev/null +++ b/sys/dev/microcode/uyap/Makefile @@ -0,0 +1,27 @@ +# $OpenBSD: Makefile,v 1.1 2004/12/19 15:20:13 deraadt Exp $ + +NOPROG= +NOMAN= + +# USB capable systems only +.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ + (${MACHINE} == "alpha") || (${MACHINE} == "sparc64") || \ + (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "cats") || \ + (${MACHINE} == "hppa") || (${MACHINE} == "sgi") + +FIRM= uyap + +CLEANFILES+= ${FIRM} build + +all: build + ${.OBJDIR}/build + +afterinstall: + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${FIRM} ${DESTDIR}/etc/firmware + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${.CURDIR}/uyap-license ${DESTDIR}/etc/firmware +.endif + +.include <bsd.prog.mk> + |