Changeset 6a44ee4 in mainline for uspace/Makefile


Ignore:
Timestamp:
2011-07-20T15:26:21Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
efcebe1
Parents:
25bef0ff (diff), a701812 (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

    r25bef0ff r6a44ee4  
    3535DIRS = \
    3636        app/bdsh \
     37        app/blkdump \
     38        app/bnchmark \
    3739        app/edit \
     40        app/ext2info \
    3841        app/getterm \
    3942        app/init \
     
    4144        app/killall \
    4245        app/klog \
     46        app/lsusb \
    4347        app/mkfat \
    4448        app/redir \
     
    4751        app/taskdump \
    4852        app/tester \
     53        app/testread \
    4954        app/tetris \
    5055        app/trace \
    5156        app/top \
     57        app/usbinfo \
     58        app/vuhid \
    5259        app/netecho \
    5360        app/nettest1 \
     
    5663        app/websrv \
    5764        app/sysinfo \
     65        app/mkbd \
    5866        srv/clip \
    5967        srv/devmap \
     
    7280        srv/fs/tmpfs \
    7381        srv/fs/devfs \
    74         srv/hid/adb_mouse \
    75         srv/hid/char_mouse \
     82        srv/fs/ext2fs \
    7683        srv/hid/s3c24xx_ts \
    7784        srv/hid/fb \
    78         srv/hid/kbd \
     85        srv/hid/input \
    7986        srv/hw/char/i8042 \
    8087        srv/hw/char/s3c24xx_uart \
     
    8794        srv/net/tl/tcp \
    8895        srv/net/net \
    89         drv/root \
    90         drv/rootvirt \
    91         drv/test1 \
    92         drv/test2 \
    93         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
    94112
    95113## Networking
     
    109127ifeq ($(UARCH),amd64)
    110128        DIRS += \
    111                 drv/rootpc \
    112                 drv/pciintel \
    113                 drv/isa \
    114                 drv/ns8250 \
     129                drv/infrastructure/rootpc \
     130                drv/bus/pci/pciintel \
     131                drv/bus/isa \
     132                drv/char/ns8250 \
    115133                srv/hw/irc/apic \
    116134                srv/hw/irc/i8259
     
    119137ifeq ($(UARCH),ia32)
    120138        DIRS += \
    121                 drv/rootpc \
    122                 drv/pciintel \
    123                 drv/isa \
    124                 drv/ns8250 \
     139                drv/infrastructure/rootpc \
     140                drv/bus/pci/pciintel \
     141                drv/bus/isa \
     142                drv/char/ns8250 \
    125143                srv/hw/irc/apic \
    126144                srv/hw/irc/i8259
     
    128146
    129147ifeq ($(UARCH),ppc32)
    130         DIRS += srv/hw/bus/cuda_adb
     148        DIRS += \
     149                drv/infrastructure/rootmac \
     150                srv/hw/bus/cuda_adb
    131151endif
    132152
    133153ifeq ($(UARCH),sparc64)
    134154        DIRS += \
    135                 srv/hw/irc/fhc \
    136155                srv/hw/irc/obio
    137156endif
     
    145164        lib/block \
    146165        lib/clui \
     166        lib/scsi \
    147167        lib/softint \
    148168        lib/softfloat \
    149169        lib/drv \
    150170        lib/packet \
    151         lib/net
     171        lib/net \
     172        lib/ext2 \
     173        lib/usb \
     174        lib/usbhost \
     175        lib/usbdev \
     176        lib/usbhid \
     177        lib/usbvirt
    152178
    153179LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.