Changes in uspace/Makefile [75fe97b:0caa075e] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r75fe97b r0caa075e  
    4444        app/download \
    4545        app/edit \
    46         app/fontviewer \
    4746        app/getterm \
    4847        app/hdisk \
     
    7877        app/nettest2 \
    7978        app/nettest3 \
    80         app/nic \
    8179        app/ping \
    8280        app/sysinfo \
     
    132130        srv/hid/rfb \
    133131        drv/audio/sb16 \
    134         drv/root/root \
    135         drv/root/virt \
     132        drv/infrastructure/root \
     133        drv/infrastructure/rootvirt \
    136134        drv/block/ahci \
    137135        drv/block/ata_bd \
    138136        drv/char/i8042 \
    139         drv/char/pl050 \
    140137        drv/char/ps2mouse \
    141138        drv/char/xtkbd \
     
    156153        drv/nic/ne2k \
    157154        drv/nic/e1k \
    158         drv/nic/rtl8139 \
    159         drv/nic/rtl8169 \
    160         drv/platform/icp
     155        drv/nic/rtl8139
     156
     157ifeq ($(CONFIG_PCC),y)
     158DIRS += \
     159        app/cc \
     160        app/ccom \
     161        app/ccom/mkext \
     162        app/cpp
     163endif
     164
     165ifeq ($(CONFIG_BINUTILS),y)
     166DIRS += \
     167        app/binutils
     168endif
     169
     170ifeq ($(CONFIG_MSIM),y)
     171DIRS += \
     172        app/msim
     173endif
    161174
    162175## Platform-specific hardware support
    163176#
    164177
    165 ifeq ($(UARCH), $(filter $(UARCH),amd64 ia32 ia64))
    166         DIRS += \
    167                 drv/platform/pc \
     178ifeq ($(UARCH),amd64)
     179        DIRS += \
     180                drv/infrastructure/rootpc \
    168181                drv/bus/pci/pciintel \
    169182                drv/bus/isa \
     
    174187endif
    175188
     189ifeq ($(UARCH),ia32)
     190        DIRS += \
     191                drv/infrastructure/rootpc \
     192                drv/bus/pci/pciintel \
     193                drv/bus/isa \
     194                drv/char/ns8250 \
     195                drv/time/cmos-rtc \
     196                srv/hw/irc/apic \
     197                srv/hw/irc/i8259
     198endif
     199
    176200ifeq ($(UARCH), $(filter $(UARCH),mips32 mips32eb))
    177201        DIRS += \
    178                 drv/platform/malta \
     202                drv/infrastructure/rootmalta \
    179203                drv/bus/pci/pciintel \
    180204                drv/bus/isa
     
    183207ifeq ($(UARCH),ppc32)
    184208        DIRS += \
    185                 drv/platform/mac \
     209                drv/infrastructure/rootmac \
    186210                drv/bus/pci/pciintel \
    187211                srv/hw/bus/cuda_adb
     
    195219ifeq ($(UARCH),arm32)
    196220        DIRS += \
    197                 drv/platform/amdm37x \
    198                 drv/fb/amdm37x_dispc \
    199                 srv/hw/irc/icp-ic
     221                drv/infrastructure/rootamdm37x \
     222                drv/fb/amdm37x_dispc
    200223endif
    201224
Note: See TracChangeset for help on using the changeset viewer.