Changes in uspace/Makefile [7e69e0e:a047aaa] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r7e69e0e ra047aaa 34 34 35 35 DIRS = \ 36 app/barber \ 36 37 app/bdsh \ 37 38 app/bithenge \ … … 212 213 lib/fmtutil \ 213 214 lib/scsi \ 215 lib/compress \ 214 216 lib/softint \ 215 217 lib/softfloat \ … … 233 235 lib/usbvirt \ 234 236 lib/pcm \ 237 lib/pcut \ 235 238 lib/bithenge \ 236 239 lib/posix \ … … 242 245 LIBN_BUILD = $(addsuffix .build,$(LIBN)) 243 246 BUILDS := $(addsuffix .build,$(DIRS)) 247 BUILDS_TESTS := $(addsuffix .build-test,$(DIRS) $(LIBS) lib/c) 244 248 245 249 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBN)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) … … 247 251 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) $(BUILDS) $(CLEANS) clean 248 252 249 all: $(BUILDS) 253 all: $(BUILDS) $(BUILDS_TESTS) 254 255 $(BUILDS_TESTS): $(BUILDS) 256 $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK) 250 257 251 258 clean: $(CLEANS)
Note:
See TracChangeset
for help on using the changeset viewer.