Changeset a33f0a6 in mainline for uspace/Makefile


Ignore:
Timestamp:
2011-08-03T17:34:57Z (13 years ago)
Author:
Oleg Romanenko <romanenko.oleg@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1940326
Parents:
52a79081 (diff), 3fab770 (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 from mainline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r52a79081 ra33f0a6  
    3535DIRS = \
    3636        app/bdsh \
     37        app/blkdump \
     38        app/bnchmark \
    3739        app/edit \
    3840        app/filecrc \
    3941        app/filegen \
     42        app/ext2info \
    4043        app/getterm \
    4144        app/init \
     
    4346        app/killall \
    4447        app/klog \
     48        app/lsusb \
    4549        app/mkfat \
    4650        app/redir \
     
    4953        app/taskdump \
    5054        app/tester \
     55        app/testread \
    5156        app/tetris \
    5257        app/trace \
    5358        app/top \
     59        app/usbinfo \
     60        app/vuhid \
    5461        app/netecho \
    5562        app/nettest1 \
     
    5865        app/websrv \
    5966        app/sysinfo \
     67        app/mkbd \
    6068        srv/clip \
    6169        srv/devmap \
     
    7583        srv/fs/tmpfs \
    7684        srv/fs/devfs \
    77         srv/hid/adb_mouse \
    78         srv/hid/char_mouse \
     85        srv/fs/ext2fs \
    7986        srv/hid/s3c24xx_ts \
    8087        srv/hid/fb \
    81         srv/hid/kbd \
     88        srv/hid/input \
    8289        srv/hw/char/i8042 \
    8390        srv/hw/char/s3c24xx_uart \
     
    9097        srv/net/tl/tcp \
    9198        srv/net/net \
    92         drv/root \
    93         drv/rootvirt \
    94         drv/test1 \
    95         drv/test2
     99        drv/infrastructure/root \
     100        drv/infrastructure/rootvirt \
     101        drv/test/test1 \
     102        drv/test/test2 \
     103        drv/test/test3 \
     104        drv/bus/usb/ehci \
     105        drv/bus/usb/ohci \
     106        drv/bus/usb/uhci \
     107        drv/bus/usb/uhcirh \
     108        drv/bus/usb/usbflbk \
     109        drv/bus/usb/usbhid \
     110        drv/bus/usb/usbhub \
     111        drv/bus/usb/usbmast \
     112        drv/bus/usb/usbmid \
     113        drv/bus/usb/usbmouse \
     114        drv/bus/usb/vhc
    96115
    97116## Networking
     
    111130ifeq ($(UARCH),amd64)
    112131        DIRS += \
    113                 drv/rootpc \
    114                 drv/pciintel \
    115                 drv/isa \
    116                 drv/ns8250 \
     132                drv/infrastructure/rootpc \
     133                drv/bus/pci/pciintel \
     134                drv/bus/isa \
     135                drv/char/ns8250 \
    117136                srv/hw/irc/apic \
    118137                srv/hw/irc/i8259
     
    121140ifeq ($(UARCH),ia32)
    122141        DIRS += \
    123                 drv/rootpc \
    124                 drv/pciintel \
    125                 drv/isa \
    126                 drv/ns8250 \
     142                drv/infrastructure/rootpc \
     143                drv/bus/pci/pciintel \
     144                drv/bus/isa \
     145                drv/char/ns8250 \
    127146                srv/hw/irc/apic \
    128147                srv/hw/irc/i8259
     
    130149
    131150ifeq ($(UARCH),ppc32)
    132         DIRS += srv/hw/bus/cuda_adb
     151        DIRS += \
     152                drv/infrastructure/rootmac \
     153                srv/hw/bus/cuda_adb
    133154endif
    134155
    135156ifeq ($(UARCH),sparc64)
    136157        DIRS += \
    137                 srv/hw/irc/fhc \
    138158                srv/hw/irc/obio
    139159endif
     
    147167        lib/block \
    148168        lib/clui \
     169        lib/scsi \
    149170        lib/softint \
    150171        lib/softfloat \
    151172        lib/drv \
    152173        lib/packet \
    153         lib/net
     174        lib/net \
     175        lib/ext2 \
     176        lib/usb \
     177        lib/usbhost \
     178        lib/usbdev \
     179        lib/usbhid \
     180        lib/usbvirt
    154181
    155182LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.