Changes in uspace/Makefile [2989c7e:af2254ec] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r2989c7e raf2254ec  
    4141        app/corecfg \
    4242        app/devctl \
     43        app/dltest \
    4344        app/dnscfg \
    4445        app/dnsres \
    4546        app/download \
    4647        app/edit \
     48        app/fdisk \
    4749        app/fontviewer \
    4850        app/getterm \
    49         app/hdisk \
    5051        app/init \
    5152        app/inet \
     
    6061        app/mkmfs \
    6162        app/modplay \
     63        app/netecho \
    6264        app/nterm \
    6365        app/redir \
     
    8082        app/ping \
    8183        app/sysinfo \
     84        app/sysinst \
    8285        app/mkbd \
    8386        app/date \
     
    8992        app/wavplay \
    9093        app/websrv \
     94        app/wifi_supplicant \
    9195        srv/audio/hound \
    9296        srv/clipboard \
     
    111115        srv/bd/file_bd \
    112116        srv/bd/rd \
    113         srv/bd/part/guid_part \
    114         srv/bd/part/mbr_part \
     117        srv/bd/vbd \
    115118        srv/fs/exfat \
    116119        srv/fs/udf \
     
    121124        srv/fs/locfs \
    122125        srv/fs/ext4fs \
     126        srv/volsrv \
    123127        srv/hid/compositor \
    124128        srv/hid/console \
     
    136140        drv/block/ahci \
    137141        drv/block/ata_bd \
     142        drv/block/ddisk \
    138143        drv/char/i8042 \
    139144        drv/char/pl050 \
    140145        drv/char/ps2mouse \
     146        drv/char/atkbd \
    141147        drv/char/xtkbd \
    142148        drv/test/test1 \
     
    158164        drv/nic/rtl8139 \
    159165        drv/nic/rtl8169 \
     166        drv/nic/ar9271 \
    160167        drv/platform/icp
    161168
     
    175182
    176183ifeq ($(UARCH), $(filter $(UARCH),mips32 mips32eb))
     184ifeq ($(MACHINE),msim)
     185        DIRS += \
     186                drv/platform/msim
     187else
    177188        DIRS += \
    178189                drv/platform/malta \
    179190                drv/bus/pci/pciintel \
    180191                drv/bus/isa
     192endif
    181193endif
    182194
     
    207219        lib/fs \
    208220        lib/block \
     221        lib/crypto \
    209222        lib/clui \
     223        lib/dltest \
     224        lib/fdisk \
    210225        lib/fmtutil \
    211226        lib/scsi \
     
    220235        lib/softrend \
    221236        lib/draw \
     237        lib/label \
    222238        lib/math \
    223239        lib/nettl \
     
    226242        lib/trackmod \
    227243        lib/uri \
    228         lib/urcu \
    229244        lib/usb \
    230245        lib/usbhost \
     
    236251        lib/bithenge \
    237252        lib/posix \
    238         lib/mbr \
    239         lib/gpt
     253        lib/ieee80211
    240254
    241255LIBC_BUILD = $(addsuffix .build,$(LIBC))
     
    251265all: $(BUILDS) $(BUILDS_TESTS)
    252266
    253 $(BUILDS_TESTS): $(BUILDS)
     267$(BUILDS_TESTS): $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD)
    254268        $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK)
    255269
Note: See TracChangeset for help on using the changeset viewer.