diff options
Diffstat (limited to 'sys/dev/microcode/tusb3410/Makefile')
-rw-r--r-- | sys/dev/microcode/tusb3410/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sys/dev/microcode/tusb3410/Makefile b/sys/dev/microcode/tusb3410/Makefile new file mode 100644 index 00000000000..0af1e73efb0 --- /dev/null +++ b/sys/dev/microcode/tusb3410/Makefile @@ -0,0 +1,34 @@ +# $OpenBSD: Makefile,v 1.1 2007/11/16 16:30:03 deraadt Exp $ + +NOPROG= +NOMAN= +CC=${HOSTCC} + +# USB capable systems only +.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ + (${MACHINE} == "alpha") || (${MACHINE} == "sparc64") || \ + (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "hppa") || \ + (${MACHINE} == "hppa64") || (${MACHINE} == "sgi") || \ + (${MACHINE} == "landisk") + +FIRM= tusb3410 + +PROG= build + +CLEANFILES+= ${FIRM} ${PROG} + +all: ${FIRM} + +${FIRM}: build + ${.OBJDIR}/build + +realinstall: + +afterinstall: + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${FIRM} ${DESTDIR}/etc/firmware + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${.CURDIR}/tusb3410-license ${DESTDIR}/etc/firmware +.endif + +.include <bsd.prog.mk> |