Changes in uspace/Makefile [d362410:4880210] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rd362410 r4880210 41 41 app/killall \ 42 42 app/klog \ 43 app/lsusb \ 43 44 app/mkfat \ 44 45 app/redir \ … … 50 51 app/trace \ 51 52 app/top \ 53 app/usbinfo \ 54 app/vuhid \ 52 55 app/netecho \ 53 56 app/nettest1 \ … … 56 59 app/websrv \ 57 60 app/sysinfo \ 61 app/mkbd \ 58 62 srv/clip \ 59 63 srv/devmap \ … … 90 94 drv/rootvirt \ 91 95 drv/test1 \ 92 drv/test2 \ 93 drv/test3 96 drv/test2 94 97 95 98 ## Networking … … 114 117 drv/ns8250 \ 115 118 srv/hw/irc/apic \ 116 srv/hw/irc/i8259 119 srv/hw/irc/i8259 \ 120 drv/ehci-hcd \ 121 drv/ohci \ 122 drv/uhci-hcd \ 123 drv/uhci-rhd \ 124 drv/usbflbk \ 125 drv/usbhid \ 126 drv/usbhub \ 127 drv/usbmast \ 128 drv/usbmid \ 129 drv/usbmouse \ 130 drv/vhc 117 131 endif 118 132 … … 124 138 drv/ns8250 \ 125 139 srv/hw/irc/apic \ 126 srv/hw/irc/i8259 140 srv/hw/irc/i8259 \ 141 drv/ehci-hcd \ 142 drv/ohci \ 143 drv/uhci-hcd \ 144 drv/uhci-rhd \ 145 drv/usbflbk \ 146 drv/usbhid \ 147 drv/usbhub \ 148 drv/usbmast \ 149 drv/usbmid \ 150 drv/usbmouse \ 151 drv/vhc 127 152 endif 128 153 … … 151 176 lib/net 152 177 178 ifeq ($(UARCH),amd64) 179 LIBS += lib/usb 180 LIBS += lib/usbhost 181 LIBS += lib/usbdev 182 LIBS += lib/usbhid 183 LIBS += lib/usbvirt 184 endif 185 186 ifeq ($(UARCH),ia32) 187 LIBS += lib/usb 188 LIBS += lib/usbhost 189 LIBS += lib/usbdev 190 LIBS += lib/usbhid 191 LIBS += lib/usbvirt 192 endif 193 153 194 LIBC_BUILD = $(addsuffix .build,$(LIBC)) 154 195 LIBS_BUILD = $(addsuffix .build,$(LIBS))
Note:
See TracChangeset
for help on using the changeset viewer.