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


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    ref4b112 r4880210  
    3838        app/getterm \
    3939        app/init \
     40        app/kill \
     41        app/killall \
    4042        app/klog \
     43        app/lsusb \
    4144        app/mkfat \
    4245        app/redir \
     
    4447        app/stats \
    4548        app/taskdump \
    46         app/tasks \
    4749        app/tester \
    48         app/test_serial \
    4950        app/tetris \
    5051        app/trace \
    5152        app/top \
    52         app/netstart \
     53        app/usbinfo \
     54        app/vuhid \
    5355        app/netecho \
    5456        app/nettest1 \
    5557        app/nettest2 \
    5658        app/ping \
     59        app/websrv \
     60        app/sysinfo \
     61        app/mkbd \
    5762        srv/clip \
    5863        srv/devmap \
     
    7883        srv/hw/char/i8042 \
    7984        srv/hw/char/s3c24xx_uart \
    80         srv/hw/netif/dp8390 \
    81         srv/net/cfg \
     85        srv/hw/netif/ne2000 \
    8286        srv/net/netif/lo \
    8387        srv/net/il/arp \
     
    8791        srv/net/tl/tcp \
    8892        srv/net/net \
    89         drv/root
     93        drv/root \
     94        drv/rootvirt \
     95        drv/test1 \
     96        drv/test2
    9097
    9198## Networking
    9299#
    93100
    94 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    95         LIBN = \
    96                 srv/net/nil/eth \
    97                 srv/net/nil/nildummy
    98 else
    99         DIRS += \
    100                 srv/net/nil/eth \
    101                 srv/net/nil/nildummy
    102 endif
     101DIRS += \
     102        srv/net/nil/eth \
     103        srv/net/nil/nildummy
    103104
    104105## Platform-specific hardware support
     
    110111
    111112ifeq ($(UARCH),amd64)
     113        DIRS += \
     114                drv/rootpc \
     115                drv/pciintel \
     116                drv/isa \
     117                drv/ns8250 \
     118                srv/hw/irc/apic \
     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
    112131endif
    113132
    114133ifeq ($(UARCH),ia32)
    115         DIRS += drv/rootia32
    116         DIRS += drv/pciintel
    117         DIRS += drv/isa
    118         DIRS += drv/ns8250
     134        DIRS += \
     135                drv/rootpc \
     136                drv/pciintel \
     137                drv/isa \
     138                drv/ns8250 \
     139                srv/hw/irc/apic \
     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
    119152endif
    120153
     
    125158ifeq ($(UARCH),sparc64)
    126159        DIRS += \
    127                 srv/hw/cir/fhc \
    128                 srv/hw/cir/obio
     160                srv/hw/irc/fhc \
     161                srv/hw/irc/obio
    129162endif
    130163
     
    143176        lib/net
    144177
     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
    145194LIBC_BUILD = $(addsuffix .build,$(LIBC))
    146195LIBS_BUILD = $(addsuffix .build,$(LIBS))
Note: See TracChangeset for help on using the changeset viewer.