Changes in uspace/Makefile [c2f3e0b:b9eb93f] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    rc2f3e0b rb9eb93f  
    3838        app/getterm \
    3939        app/init \
    40         app/kill \
    41         app/killall \
    4240        app/klog \
    4341        app/mkfat \
     
    5149        app/trace \
    5250        app/top \
     51        app/usbinfo \
     52        app/virtusbkbd \
    5353        app/netecho \
    5454        app/nettest1 \
    5555        app/nettest2 \
    5656        app/ping \
    57         app/websrv \
    58         app/sysinfo \
    5957        srv/clip \
    6058        srv/devmap \
     
    8179        srv/hw/char/s3c24xx_uart \
    8280        srv/hw/netif/dp8390 \
     81        srv/net/cfg \
    8382        srv/net/netif/lo \
    8483        srv/net/il/arp \
     
    9695#
    9796
    98 DIRS += \
    99         srv/net/nil/eth \
    100         srv/net/nil/nildummy
     97ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
     98        LIBN = \
     99                srv/net/nil/eth \
     100                srv/net/nil/nildummy
     101else
     102        DIRS += \
     103                srv/net/nil/eth \
     104                srv/net/nil/nildummy
     105endif
    101106
    102107## Platform-specific hardware support
     
    112117        DIRS += drv/isa
    113118        DIRS += drv/ns8250
     119        DIRS += drv/uhci
     120        DIRS += drv/usbhub
     121        DIRS += drv/usbkbd
     122        DIRS += drv/vhc
    114123endif
    115124
     
    119128        DIRS += drv/isa
    120129        DIRS += drv/ns8250
     130        DIRS += drv/uhci
     131        DIRS += drv/usbhub
     132        DIRS += drv/usbkbd
     133        DIRS += drv/vhc
    121134endif
    122135
     
    144157        lib/packet \
    145158        lib/net
     159
     160ifeq ($(UARCH),amd64)
     161        LIBS += lib/usb
     162        LIBS += lib/usbvirt
     163endif
     164
     165ifeq ($(UARCH),ia32)
     166        LIBS += lib/usb
     167        LIBS += lib/usbvirt
     168endif
    146169
    147170LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.