Changes in uspace/Makefile [d362410:4880210] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    rd362410 r4880210  
    4141        app/killall \
    4242        app/klog \
     43        app/lsusb \
    4344        app/mkfat \
    4445        app/redir \
     
    5051        app/trace \
    5152        app/top \
     53        app/usbinfo \
     54        app/vuhid \
    5255        app/netecho \
    5356        app/nettest1 \
     
    5659        app/websrv \
    5760        app/sysinfo \
     61        app/mkbd \
    5862        srv/clip \
    5963        srv/devmap \
     
    9094        drv/rootvirt \
    9195        drv/test1 \
    92         drv/test2 \
    93         drv/test3
     96        drv/test2
    9497
    9598## Networking
     
    114117                drv/ns8250 \
    115118                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
    117131endif
    118132
     
    124138                drv/ns8250 \
    125139                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
    127152endif
    128153
     
    151176        lib/net
    152177
     178ifeq ($(UARCH),amd64)
     179        LIBS += lib/usb
     180        LIBS += lib/usbhost
     181        LIBS += lib/usbdev
     182        LIBS += lib/usbhid
     183        LIBS += lib/usbvirt
     184endif
     185
     186ifeq ($(UARCH),ia32)
     187        LIBS += lib/usb
     188        LIBS += lib/usbhost
     189        LIBS += lib/usbdev
     190        LIBS += lib/usbhid
     191        LIBS += lib/usbvirt
     192endif
     193
    153194LIBC_BUILD = $(addsuffix .build,$(LIBC))
    154195LIBS_BUILD = $(addsuffix .build,$(LIBS))
Note: See TracChangeset for help on using the changeset viewer.