blob: 7be5ef63e329a4915bec1637d7e45bc795bd513e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $OpenBSD: Makefile,v 1.9 2005/03/08 11:45:36 dlg Exp $
NOPROG=
NOMAN=
# USB capable systems only
.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \
(${MACHINE} == "alpha") || (${MACHINE} == "sparc64") || \
(${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "cats") || \
(${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \
(${MACHINE} == "sgi") || (${MACHINE} == "zaurus")
FIRM= atu-intersil-int atu-intersil-ext \
atu-rfmd-int atu-rfmd-ext \
atu-rfmd2958-int atu-rfmd2958-ext \
atu-rfmd2958smc-int atu-rfmd2958smc-ext \
atu-at76c503-i3863-int atu-at76c503-i3863-ext \
atu-at76c503-rfmd-acc-int atu-at76c503-rfmd-acc-ext \
atu-at76c5050rfmd-int atu-at76c5050rfmd-ext
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}/atu-license ${DESTDIR}/etc/firmware
.endif
.include <bsd.prog.mk>
|