Changes in uspace/Makefile [7e69e0e:a047aaa] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r7e69e0e ra047aaa  
    3434
    3535DIRS = \
     36        app/barber \
    3637        app/bdsh \
    3738        app/bithenge \
     
    212213        lib/fmtutil \
    213214        lib/scsi \
     215        lib/compress \
    214216        lib/softint \
    215217        lib/softfloat \
     
    233235        lib/usbvirt \
    234236        lib/pcm \
     237        lib/pcut \
    235238        lib/bithenge \
    236239        lib/posix \
     
    242245LIBN_BUILD = $(addsuffix .build,$(LIBN))
    243246BUILDS := $(addsuffix .build,$(DIRS))
     247BUILDS_TESTS := $(addsuffix .build-test,$(DIRS) $(LIBS) lib/c)
    244248
    245249CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBN)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC))
     
    247251.PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) $(BUILDS) $(CLEANS) clean
    248252
    249 all: $(BUILDS)
     253all: $(BUILDS) $(BUILDS_TESTS)
     254
     255$(BUILDS_TESTS): $(BUILDS)
     256        $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK)
    250257
    251258clean: $(CLEANS)
Note: See TracChangeset for help on using the changeset viewer.