Changeset c028b22 in mainline for uspace/Makefile


Ignore:
Timestamp:
2011-07-08T17:01:01Z (13 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cc1a727
Parents:
4e36219 (diff), 026793d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r4e36219 rc028b22  
    4444        app/killall \
    4545        app/klog \
     46        app/lsusb \
    4647        app/mkfat \
    4748        app/redir \
     
    5455        app/trace \
    5556        app/top \
     57        app/usbinfo \
     58        app/vuhid \
    5659        app/netecho \
    5760        app/nettest1 \
     
    6063        app/websrv \
    6164        app/sysinfo \
     65        app/mkbd \
    6266        srv/clip \
    6367        srv/devmap \
     
    7680        srv/fs/tmpfs \
    7781        srv/fs/devfs \
    78         srv/fs/pipefs \
    7982        srv/fs/ext2fs \
    80         srv/hid/adb_mouse \
    81         srv/hid/char_mouse \
    8283        srv/hid/s3c24xx_ts \
    8384        srv/hid/fb \
    84         srv/hid/kbd \
     85        srv/hid/input \
    8586        srv/hw/char/i8042 \
    8687        srv/hw/char/s3c24xx_uart \
     
    9394        srv/net/tl/tcp \
    9495        srv/net/net \
    95         drv/root \
    96         drv/rootvirt \
    97         drv/test1 \
    98         drv/test2 \
    99         drv/test3
     96        drv/infrastructure/root \
     97        drv/infrastructure/rootvirt \
     98        drv/test/test1 \
     99        drv/test/test2 \
     100        drv/test/test3 \
     101        drv/bus/usb/ehci \
     102        drv/bus/usb/ohci \
     103        drv/bus/usb/uhci \
     104        drv/bus/usb/uhcirh \
     105        drv/bus/usb/usbflbk \
     106        drv/bus/usb/usbhid \
     107        drv/bus/usb/usbhub \
     108        drv/bus/usb/usbmast \
     109        drv/bus/usb/usbmid \
     110        drv/bus/usb/usbmouse \
     111        drv/bus/usb/vhc
    100112
    101113## Networking
     
    115127ifeq ($(UARCH),amd64)
    116128        DIRS += \
    117                 drv/rootpc \
    118                 drv/pciintel \
    119                 drv/isa \
    120                 drv/ns8250 \
     129                drv/infrastructure/rootpc \
     130                drv/bus/pci/pciintel \
     131                drv/bus/isa \
     132                drv/char/ns8250 \
    121133                srv/hw/irc/apic \
    122134                srv/hw/irc/i8259
     
    125137ifeq ($(UARCH),ia32)
    126138        DIRS += \
    127                 drv/rootpc \
    128                 drv/pciintel \
    129                 drv/isa \
    130                 drv/ns8250 \
     139                drv/infrastructure/rootpc \
     140                drv/bus/pci/pciintel \
     141                drv/bus/isa \
     142                drv/char/ns8250 \
    131143                srv/hw/irc/apic \
    132144                srv/hw/irc/i8259
     
    134146
    135147ifeq ($(UARCH),ppc32)
    136         DIRS += srv/hw/bus/cuda_adb
     148        DIRS += \
     149                drv/infrastructure/rootmac \
     150                srv/hw/bus/cuda_adb
    137151endif
    138152
    139153ifeq ($(UARCH),sparc64)
    140154        DIRS += \
    141                 srv/hw/irc/fhc \
    142155                srv/hw/irc/obio
    143156endif
     
    151164        lib/block \
    152165        lib/clui \
     166        lib/scsi \
    153167        lib/softint \
    154168        lib/softfloat \
     
    156170        lib/packet \
    157171        lib/net \
    158         lib/ext2
     172        lib/ext2 \
     173        lib/usb \
     174        lib/usbhost \
     175        lib/usbdev \
     176        lib/usbhid \
     177        lib/usbvirt
    159178
    160179LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.