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