Changes in uspace/Makefile [83b64a59:13eecc4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r83b64a59 r13eecc4 169 169 drv/char/ns8250 \ 170 170 drv/char/pc-lpt \ 171 drv/char/pl011 \172 171 drv/char/pl050 \ 173 172 drv/char/ski-con \ … … 182 181 drv/hid/xtkbd \ 183 182 drv/intctl/apic \ 184 drv/intctl/gicv2 \185 183 drv/intctl/i8259 \ 186 184 drv/intctl/icp-ic \ … … 193 191 drv/nic/virtio-net \ 194 192 drv/platform/amdm37x \ 195 drv/platform/arm64virt \196 193 drv/platform/icp \ 197 194 drv/platform/mac \ … … 223 220 # 224 221 225 DIRS += \ 222 BASE_LIBS = \ 223 lib/c \ 224 lib/cpp \ 225 lib/untar 226 227 LIBS = \ 226 228 lib/fs \ 227 229 lib/block \ 228 lib/c \229 lib/cpp \230 230 lib/crypto \ 231 231 lib/clui \ … … 250 250 lib/ext4 \ 251 251 lib/trackmod \ 252 lib/untar \253 252 lib/uri \ 254 253 lib/usb \ … … 264 263 lib/virtio 265 264 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 265 BASE_BUILDS := $(addsuffix .build,$(BASE_LIBS)) 266 BUILDS := $(addsuffix .build,$(DIRS) $(LIBS)) 267 BUILDS_TESTS := $(addsuffix .build-test,$(DIRS) $(LIBS) $(BASE_LIBS)) 268 DEPS = $(addsuffix /deps.mk,$(DIRS) $(LIBS)) 269 CLEANS := $(addsuffix .clean,$(DIRS) $(LIBS) $(BASE_LIBS)) 270 271 .PHONY: all $(BASE_BUILDS) $(BUILDS) $(BUILDS_TESTS) $(CLEANS) clean export 272 272 273 273 all: $(BUILDS) $(BUILDS_TESTS) 274 274 275 $(BUILDS_TESTS): $(B UILDS)275 $(BUILDS_TESTS): $(BASE_BUILDS) $(BUILDS) 276 276 $(MAKE) -r -C $(basename $@) all-test PRECHECK=$(PRECHECK) 277 277 … … 289 289 -$(MAKE) -r -C $(basename $@) fasterclean 290 290 291 $(B UILDS):291 $(BASE_BUILDS) $(BUILDS): 292 292 $(MAKE) -r -C $(basename $@) all PRECHECK=$(PRECHECK) 293 293 … … 295 295 $(MAKE) -r -C $(@D) deps.mk SELF_TARGET="$(@D).build" 296 296 297 $(BUILDS): $(BASE_BUILDS) 298 297 299 -include $(DEPS)
Note:
See TracChangeset
for help on using the changeset viewer.