Changeset 6eb957dc in mainline for uspace/Makefile


Ignore:
Timestamp:
2014-10-09T03:34:21Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ef3da5a
Parents:
fa65df1 (diff), 18cc83c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    rfa65df1 r6eb957dc  
    5858        app/mkexfat \
    5959        app/mkmfs \
     60        app/modplay \
    6061        app/nterm \
    6162        app/redir \
     
    223224        lib/nic \
    224225        lib/ext4 \
     226        lib/trackmod \
    225227        lib/uri \
    226228        lib/usb \
     
    230232        lib/usbvirt \
    231233        lib/pcm \
     234        lib/pcut \
    232235        lib/bithenge \
    233236        lib/posix \
     
    239242LIBN_BUILD = $(addsuffix .build,$(LIBN))
    240243BUILDS := $(addsuffix .build,$(DIRS))
     244BUILDS_TESTS := $(addsuffix .build-test,$(DIRS) $(LIBS) lib/c)
    241245
    242246CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBN)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC))
     
    244248.PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) $(BUILDS) $(CLEANS) clean
    245249
    246 all: $(BUILDS)
     250all: $(BUILDS) $(BUILDS_TESTS)
     251
     252$(BUILDS_TESTS): $(BUILDS)
     253        $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK)
    247254
    248255clean: $(CLEANS)
Note: See TracChangeset for help on using the changeset viewer.