Changes in uspace/Makefile [e5291e0:3f10d92] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    re5291e0 r3f10d92  
    3535DIRS = \
    3636        app/bdsh \
    37         app/blkdump \
    38         app/bnchmark \
    39         app/devctl \
    4037        app/edit \
    41         app/ext2info \
    4238        app/getterm \
    4339        app/init \
     
    4541        app/killall \
    4642        app/klog \
    47         app/locinfo \
    48         app/lsusb \
    4943        app/mkfat \
    50         app/mkmfs \
    5144        app/redir \
    5245        app/sbi \
    53         app/sportdmp \
    5446        app/stats \
    5547        app/taskdump \
    5648        app/tester \
    57         app/testread \
    5849        app/tetris \
    5950        app/trace \
    6051        app/top \
    61         app/usbinfo \
    62         app/vuhid \
    6352        app/netecho \
    6453        app/nettest1 \
     
    6756        app/websrv \
    6857        app/sysinfo \
    69         app/mkbd \
    7058        srv/clip \
    71         srv/loc \
     59        srv/devmap \
    7260        srv/devman \
    7361        srv/loader \
     
    8169        srv/bd/part/guid_part \
    8270        srv/bd/part/mbr_part \
    83         srv/fs/exfat \
    8471        srv/fs/fat \
    85         srv/fs/cdfs \
    8672        srv/fs/tmpfs \
    87         srv/fs/mfs \
    88         srv/fs/locfs \
    89         srv/fs/ext2fs \
    90         srv/hid/console \
     73        srv/fs/devfs \
     74        srv/hid/adb_mouse \
     75        srv/hid/char_mouse \
    9176        srv/hid/s3c24xx_ts \
    9277        srv/hid/fb \
    93         srv/hid/input \
     78        srv/hid/kbd \
    9479        srv/hw/char/i8042 \
    9580        srv/hw/char/s3c24xx_uart \
     81        srv/hw/netif/ne2000 \
     82        srv/net/netif/lo \
    9683        srv/net/il/arp \
    9784        srv/net/il/ip \
     
    9986        srv/net/tl/udp \
    10087        srv/net/tl/tcp \
     88        srv/net/net \
     89        drv/root \
     90        drv/rootvirt \
     91        drv/test1 \
     92        drv/test2
     93
     94## Networking
     95#
     96
     97DIRS += \
    10198        srv/net/nil/eth \
    102         srv/net/nil/nildummy \
    103         srv/net/net \
    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/vhc \
    119         drv/nic/lo \
    120         drv/nic/ne2k
    121 
    122 ifeq ($(CONFIG_PCC),y)
    123 DIRS += \
    124         app/cc \
    125         app/ccom \
    126         app/ccom/mkext \
    127         app/cpp
    128 endif
    129 
    130 ifeq ($(CONFIG_BINUTILS),y)
    131 DIRS += \
    132         app/binutils
    133 endif
     99        srv/net/nil/nildummy
    134100
    135101## Platform-specific hardware support
    136102#
    137103
     104ifneq ($(UARCH),abs32le)
     105        DIRS += srv/hid/console
     106endif
     107
    138108ifeq ($(UARCH),amd64)
    139109        DIRS += \
    140                 drv/infrastructure/rootpc \
    141                 drv/bus/pci/pciintel \
    142                 drv/bus/isa \
    143                 drv/char/ns8250 \
     110                drv/rootpc \
     111                drv/pciintel \
     112                drv/isa \
     113                drv/ns8250 \
    144114                srv/hw/irc/apic \
    145115                srv/hw/irc/i8259
     
    148118ifeq ($(UARCH),ia32)
    149119        DIRS += \
    150                 drv/infrastructure/rootpc \
    151                 drv/bus/pci/pciintel \
    152                 drv/bus/isa \
    153                 drv/char/ns8250 \
     120                drv/rootpc \
     121                drv/pciintel \
     122                drv/isa \
     123                drv/ns8250 \
    154124                srv/hw/irc/apic \
    155125                srv/hw/irc/i8259
     
    157127
    158128ifeq ($(UARCH),ppc32)
    159         DIRS += \
    160                 drv/infrastructure/rootmac \
    161                 srv/hw/bus/cuda_adb
     129        DIRS += srv/hw/bus/cuda_adb
    162130endif
    163131
    164132ifeq ($(UARCH),sparc64)
    165133        DIRS += \
     134                srv/hw/irc/fhc \
    166135                srv/hw/irc/obio
    167136endif
     
    175144        lib/block \
    176145        lib/clui \
    177         lib/fmtutil \
    178         lib/scsi \
    179146        lib/softint \
    180147        lib/softfloat \
    181148        lib/drv \
    182         lib/fb \
    183         lib/net \
    184         lib/nic \
    185         lib/ext2 \
    186         lib/usb \
    187         lib/usbhost \
    188         lib/usbdev \
    189         lib/usbhid \
    190         lib/usbvirt \
    191         lib/posix
     149        lib/packet \
     150        lib/net
    192151
    193152LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.