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


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r2989c7e rbdfdc51c  
    4545        app/download \
    4646        app/edit \
     47        app/fdisk \
    4748        app/fontviewer \
    4849        app/getterm \
    49         app/hdisk \
    5050        app/init \
    5151        app/inet \
     
    6060        app/mkmfs \
    6161        app/modplay \
     62        app/netecho \
    6263        app/nterm \
    6364        app/redir \
     
    8081        app/ping \
    8182        app/sysinfo \
     83        app/sysinst \
    8284        app/mkbd \
    8385        app/date \
     86        app/vcalc \
    8487        app/vdemo \
    8588        app/viewer \
     
    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 \
     
    147153        drv/bus/usb/ohci \
    148154        drv/bus/usb/uhci \
    149         drv/bus/usb/uhcirh \
    150155        drv/bus/usb/usbflbk \
    151156        drv/bus/usb/usbhid \
     
    158163        drv/nic/rtl8139 \
    159164        drv/nic/rtl8169 \
     165        drv/nic/ar9271 \
    160166        drv/platform/icp
    161167
     
    175181
    176182ifeq ($(UARCH), $(filter $(UARCH),mips32 mips32eb))
     183ifeq ($(MACHINE),msim)
     184        DIRS += \
     185                drv/platform/msim
     186else
    177187        DIRS += \
    178188                drv/platform/malta \
     
    180190                drv/bus/isa
    181191endif
     192endif
    182193
    183194ifeq ($(UARCH),ppc32)
     
    198209                drv/fb/amdm37x_dispc \
    199210                srv/hw/irc/icp-ic
     211endif
     212
     213## Dynamic linking tests
     214#
     215ifeq ($(CONFIG_BUILD_SHARED_LIBS),y)
     216        DIRS += \
     217                app/dltest \
     218                app/dltests
    200219endif
    201220
     
    207226        lib/fs \
    208227        lib/block \
     228        lib/crypto \
    209229        lib/clui \
     230        lib/dltest \
     231        lib/fdisk \
    210232        lib/fmtutil \
    211233        lib/scsi \
     
    220242        lib/softrend \
    221243        lib/draw \
     244        lib/label \
    222245        lib/math \
    223246        lib/nettl \
     
    226249        lib/trackmod \
    227250        lib/uri \
    228         lib/urcu \
    229251        lib/usb \
    230252        lib/usbhost \
     
    236258        lib/bithenge \
    237259        lib/posix \
    238         lib/mbr \
    239         lib/gpt
     260        lib/ieee80211
    240261
    241262LIBC_BUILD = $(addsuffix .build,$(LIBC))
     
    251272all: $(BUILDS) $(BUILDS_TESTS)
    252273
    253 $(BUILDS_TESTS): $(BUILDS)
     274$(BUILDS_TESTS): $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD)
    254275        $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK)
    255276
Note: See TracChangeset for help on using the changeset viewer.