Changes in uspace/Makefile [01579ad:75fe97b] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r01579ad r75fe97b  
    4444        app/download \
    4545        app/edit \
     46        app/fontviewer \
    4647        app/getterm \
    4748        app/hdisk \
     
    7778        app/nettest2 \
    7879        app/nettest3 \
     80        app/nic \
    7981        app/ping \
    8082        app/sysinfo \
     
    130132        srv/hid/rfb \
    131133        drv/audio/sb16 \
    132         drv/infrastructure/root \
    133         drv/infrastructure/rootvirt \
     134        drv/root/root \
     135        drv/root/virt \
    134136        drv/block/ahci \
    135137        drv/block/ata_bd \
    136138        drv/char/i8042 \
     139        drv/char/pl050 \
    137140        drv/char/ps2mouse \
    138141        drv/char/xtkbd \
     
    153156        drv/nic/ne2k \
    154157        drv/nic/e1k \
    155         drv/nic/rtl8139
    156 
    157 ifeq ($(CONFIG_PCC),y)
    158 DIRS += \
    159         app/cc \
    160         app/ccom \
    161         app/ccom/mkext \
    162         app/cpp
    163 endif
    164 
    165 ifeq ($(CONFIG_BINUTILS),y)
    166 DIRS += \
    167         app/binutils
    168 endif
    169 
    170 ifeq ($(CONFIG_MSIM),y)
    171 DIRS += \
    172         app/msim
    173 endif
     158        drv/nic/rtl8139 \
     159        drv/nic/rtl8169 \
     160        drv/platform/icp
    174161
    175162## Platform-specific hardware support
     
    178165ifeq ($(UARCH), $(filter $(UARCH),amd64 ia32 ia64))
    179166        DIRS += \
    180                 drv/infrastructure/rootpc \
     167                drv/platform/pc \
    181168                drv/bus/pci/pciintel \
    182169                drv/bus/isa \
     
    189176ifeq ($(UARCH), $(filter $(UARCH),mips32 mips32eb))
    190177        DIRS += \
    191                 drv/infrastructure/rootmalta \
     178                drv/platform/malta \
    192179                drv/bus/pci/pciintel \
    193180                drv/bus/isa
     
    196183ifeq ($(UARCH),ppc32)
    197184        DIRS += \
    198                 drv/infrastructure/rootmac \
     185                drv/platform/mac \
    199186                drv/bus/pci/pciintel \
    200187                srv/hw/bus/cuda_adb
     
    208195ifeq ($(UARCH),arm32)
    209196        DIRS += \
    210                 drv/infrastructure/rootamdm37x \
    211                 drv/fb/amdm37x_dispc
     197                drv/platform/amdm37x \
     198                drv/fb/amdm37x_dispc \
     199                srv/hw/irc/icp-ic
    212200endif
    213201
     
    247235        lib/gpt
    248236
    249 ifeq ($(CONFIG_PCUT_TESTS),y)
    250         LIBS += lib/pcut
    251 endif
    252 
    253237LIBC_BUILD = $(addsuffix .build,$(LIBC))
    254238LIBS_BUILD = $(addsuffix .build,$(LIBS))
    255239LIBN_BUILD = $(addsuffix .build,$(LIBN))
    256240BUILDS := $(addsuffix .build,$(DIRS))
    257 BUILDS_TESTS := $(addsuffix .build-test,$(DIRS) $(LIBS) lib/c)
    258241
    259242CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBN)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC))
     
    261244.PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) $(BUILDS) $(CLEANS) clean
    262245
    263 all: $(BUILDS) $(BUILDS_TESTS)
    264 
    265 $(BUILDS_TESTS): $(BUILDS)
    266         $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK)
     246all: $(BUILDS)
    267247
    268248clean: $(CLEANS)
Note: See TracChangeset for help on using the changeset viewer.