diff options
| author | Weongyo Jeong <weongyo@FreeBSD.org> | 2009-06-01 02:37:06 +0000 |
|---|---|---|
| committer | Weongyo Jeong <weongyo@FreeBSD.org> | 2009-06-01 02:37:06 +0000 |
| commit | 18b223fed49e729c7bacb0d61e8d1880f2730379 (patch) | |
| tree | 3e8d088a614150c33f2b48e163263360cc4862e6 /sys/modules/usb | |
| parent | 85531f08869badb920550f45045e55ece254b209 (diff) | |
connect urtw(4) to the amd64/i386 build that it's not tested on the big
endian machines yet.
Notes
svn path=/head/; revision=193195
Diffstat (limited to 'sys/modules/usb')
| -rw-r--r-- | sys/modules/usb/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/modules/usb/Makefile b/sys/modules/usb/Makefile index b7de9e649b33..2555b83c65b9 100644 --- a/sys/modules/usb/Makefile +++ b/sys/modules/usb/Makefile @@ -27,7 +27,7 @@ SUBDIR = usb SUBDIR += ehci musb ohci uhci uss820dci ${_at91dci} ${_atmegadci} -SUBDIR += rum uath upgt ural zyd +SUBDIR += rum uath upgt ural zyd ${_urtw} SUBDIR += uhid ukbd ums udbp ufm SUBDIR += ucom u3g uark ubsa ubser uchcom ucycom ufoma uftdi ugensa uipaq ulpt \ umct umodem umoscom uplcom uslcom uvisor uvscom @@ -35,9 +35,17 @@ SUBDIR += uether aue axe cdce cue kue rue udav SUBDIR += usfs umass urio SUBDIR += quirk template +.if ${MACHINE_ARCH} == "amd64" +_urtw= urtw +.endif + .if ${MACHINE_ARCH} == "arm" _at91dci= at91dci _atmegadci= atmegadci .endif +.if ${MACHINE_ARCH} == "i386" +_urtw= urtw +.endif + .include <bsd.subdir.mk> |
