Changeset 26e7d6d in mainline for uspace/Makefile


Ignore:
Timestamp:
2011-09-19T16:31:00Z (15 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
Children:
a347a11
Parents:
3842a955 (diff), 086290d (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

    r3842a955 r26e7d6d  
    3737        app/blkdump \
    3838        app/bnchmark \
     39        app/devctl \
    3940        app/edit \
    4041        app/ext2info \
     
    4445        app/killall \
    4546        app/klog \
     47        app/locinfo \
    4648        app/lsusb \
    4749        app/mkfat \
     50        app/mkmfs \
    4851        app/redir \
    4952        app/sbi \
     53        app/sportdmp \
    5054        app/stats \
    5155        app/taskdump \
     
    6569        app/mkbd \
    6670        srv/clip \
    67         srv/devmap \
     71        srv/loc \
    6872        srv/devman \
    6973        srv/loader \
     
    7781        srv/bd/part/guid_part \
    7882        srv/bd/part/mbr_part \
     83        srv/fs/exfat \
    7984        srv/fs/fat \
     85        srv/fs/cdfs \
    8086        srv/fs/tmpfs \
    81         srv/fs/devfs \
     87        srv/fs/mfs \
     88        srv/fs/locfs \
    8289        srv/fs/ext2fs \
    83         srv/hid/adb_mouse \
    84         srv/hid/char_mouse \
     90        srv/hid/console \
    8591        srv/hid/s3c24xx_ts \
    8692        srv/hid/fb \
     
    96102        srv/net/tl/tcp \
    97103        srv/net/net \
    98         drv/root \
    99         drv/rootvirt \
    100         drv/test1 \
    101         drv/test2 \
    102         drv/test3 \
    103         drv/ehci \
    104         drv/ohci \
    105         drv/uhci \
    106         drv/uhcirh \
    107         drv/usbflbk \
    108         drv/usbhid \
    109         drv/usbhub \
    110         drv/usbmast \
    111         drv/usbmid \
    112         drv/usbmouse \
    113         drv/vhc
     104        drv/infrastructure/root \
     105        drv/infrastructure/rootvirt \
     106        drv/test/test1 \
     107        drv/test/test2 \
     108        drv/test/test3 \
     109        drv/bus/usb/ehci \
     110        drv/bus/usb/ohci \
     111        drv/bus/usb/uhci \
     112        drv/bus/usb/uhcirh \
     113        drv/bus/usb/usbflbk \
     114        drv/bus/usb/usbhid \
     115        drv/bus/usb/usbhub \
     116        drv/bus/usb/usbmast \
     117        drv/bus/usb/usbmid \
     118        drv/bus/usb/usbmouse \
     119        drv/bus/usb/vhc
     120
     121ifeq ($(CONFIG_PCC),y)
     122DIRS += \
     123        app/cc \
     124        app/ccom \
     125        app/ccom/mkext \
     126        app/cpp
     127endif
     128
     129ifeq ($(CONFIG_BINUTILS),y)
     130DIRS += \
     131        app/binutils
     132endif
    114133
    115134## Networking
     
    123142#
    124143
    125 ifneq ($(UARCH),abs32le)
    126         DIRS += srv/hid/console
    127 endif
    128 
    129144ifeq ($(UARCH),amd64)
    130145        DIRS += \
    131                 drv/rootpc \
    132                 drv/pciintel \
    133                 drv/isa \
    134                 drv/ns8250 \
     146                drv/infrastructure/rootpc \
     147                drv/bus/pci/pciintel \
     148                drv/bus/isa \
     149                drv/char/ns8250 \
    135150                srv/hw/irc/apic \
    136151                srv/hw/irc/i8259
     
    139154ifeq ($(UARCH),ia32)
    140155        DIRS += \
    141                 drv/rootpc \
    142                 drv/pciintel \
    143                 drv/isa \
    144                 drv/ns8250 \
     156                drv/infrastructure/rootpc \
     157                drv/bus/pci/pciintel \
     158                drv/bus/isa \
     159                drv/char/ns8250 \
    145160                srv/hw/irc/apic \
    146161                srv/hw/irc/i8259
     
    148163
    149164ifeq ($(UARCH),ppc32)
    150         DIRS += srv/hw/bus/cuda_adb
     165        DIRS += \
     166                drv/infrastructure/rootmac \
     167                srv/hw/bus/cuda_adb
    151168endif
    152169
    153170ifeq ($(UARCH),sparc64)
    154171        DIRS += \
    155                 srv/hw/irc/fhc \
    156172                srv/hw/irc/obio
    157173endif
     
    165181        lib/block \
    166182        lib/clui \
     183        lib/fmtutil \
     184        lib/scsi \
    167185        lib/softint \
    168186        lib/softfloat \
    169187        lib/drv \
    170188        lib/packet \
     189        lib/fb \
    171190        lib/net \
    172191        lib/ext2 \
     
    175194        lib/usbdev \
    176195        lib/usbhid \
    177         lib/usbvirt
     196        lib/usbvirt \
     197        lib/posix
    178198
    179199LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.