Changes in uspace/Makefile [83b64a59:69b6dd1f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r83b64a59 r69b6dd1f 223 223 # 224 224 225 DIRS += \ 225 BASE_LIBS = \ 226 lib/c \ 227 lib/cpp \ 228 lib/untar 229 230 LIBS = \ 226 231 lib/fs \ 227 232 lib/block \ 228 lib/c \229 lib/cpp \230 233 lib/crypto \ 231 234 lib/clui \ … … 250 253 lib/ext4 \ 251 254 lib/trackmod \ 252 lib/untar \253 255 lib/uri \ 254 256 lib/usb \ … … 264 266 lib/virtio 265 267 266 BUILDS := $(addsuffix .build,$(DIRS)) 267 BUILDS_TESTS := $(addsuffix .build-test,$(DIRS)) 268 DEPS = $(addsuffix /deps.mk,$(DIRS)) 269 CLEANS := $(addsuffix .clean,$(DIRS)) 270 271 .PHONY: all $(BUILDS) $(BUILDS_TESTS) $(CLEANS) clean export 268 BASE_BUILDS := $(addsuffix .build,$(BASE_LIBS)) 269 BUILDS := $(addsuffix .build,$(DIRS) $(LIBS)) 270 BUILDS_TESTS := $(addsuffix .build-test,$(DIRS) $(LIBS) $(BASE_LIBS)) 271 DEPS = $(addsuffix /deps.mk,$(DIRS) $(LIBS)) 272 CLEANS := $(addsuffix .clean,$(DIRS) $(LIBS) $(BASE_LIBS)) 273 274 .PHONY: all $(BASE_BUILDS) $(BUILDS) $(BUILDS_TESTS) $(CLEANS) clean export 272 275 273 276 all: $(BUILDS) $(BUILDS_TESTS) 274 277 275 $(BUILDS_TESTS): $(B UILDS)278 $(BUILDS_TESTS): $(BASE_BUILDS) $(BUILDS) 276 279 $(MAKE) -r -C $(basename $@) all-test PRECHECK=$(PRECHECK) 277 280 … … 289 292 -$(MAKE) -r -C $(basename $@) fasterclean 290 293 291 $(B UILDS):294 $(BASE_BUILDS) $(BUILDS): 292 295 $(MAKE) -r -C $(basename $@) all PRECHECK=$(PRECHECK) 293 296 … … 295 298 $(MAKE) -r -C $(@D) deps.mk SELF_TARGET="$(@D).build" 296 299 300 $(BUILDS): $(BASE_BUILDS) 301 297 302 -include $(DEPS)
Note:
See TracChangeset
for help on using the changeset viewer.