Changeset 18cc83c in mainline for uspace/Makefile
- Timestamp:
- 2014-09-29T14:28:32Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 21799398, 43dd72b7, 6eb957dc
- Parents:
- 6609050 (diff), da4e695 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r6609050 r18cc83c 233 233 lib/usbvirt \ 234 234 lib/pcm \ 235 lib/pcut \ 235 236 lib/bithenge \ 236 237 lib/posix \ … … 242 243 LIBN_BUILD = $(addsuffix .build,$(LIBN)) 243 244 BUILDS := $(addsuffix .build,$(DIRS)) 245 BUILDS_TESTS := $(addsuffix .build-test,$(DIRS) $(LIBS) lib/c) 244 246 245 247 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBN)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) … … 247 249 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) $(BUILDS) $(CLEANS) clean 248 250 249 all: $(BUILDS) 251 all: $(BUILDS) $(BUILDS_TESTS) 252 253 $(BUILDS_TESTS): $(BUILDS) 254 $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK) 250 255 251 256 clean: $(CLEANS)
Note:
See TracChangeset
for help on using the changeset viewer.