Changeset 6eb957dc in mainline for uspace/Makefile
- Timestamp:
- 2014-10-09T03:34:21Z (10 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rfa65df1 r6eb957dc 58 58 app/mkexfat \ 59 59 app/mkmfs \ 60 app/modplay \ 60 61 app/nterm \ 61 62 app/redir \ … … 223 224 lib/nic \ 224 225 lib/ext4 \ 226 lib/trackmod \ 225 227 lib/uri \ 226 228 lib/usb \ … … 230 232 lib/usbvirt \ 231 233 lib/pcm \ 234 lib/pcut \ 232 235 lib/bithenge \ 233 236 lib/posix \ … … 239 242 LIBN_BUILD = $(addsuffix .build,$(LIBN)) 240 243 BUILDS := $(addsuffix .build,$(DIRS)) 244 BUILDS_TESTS := $(addsuffix .build-test,$(DIRS) $(LIBS) lib/c) 241 245 242 246 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBN)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) … … 244 248 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) $(BUILDS) $(CLEANS) clean 245 249 246 all: $(BUILDS) 250 all: $(BUILDS) $(BUILDS_TESTS) 251 252 $(BUILDS_TESTS): $(BUILDS) 253 $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK) 247 254 248 255 clean: $(CLEANS)
Note:
See TracChangeset
for help on using the changeset viewer.