Changes in uspace/Makefile [3052ff4:c7dc8ad] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r3052ff4 rc7dc8ad 33 33 34 34 DIRS = \ 35 lib/libc \36 lib/libfs \37 lib/libblock \38 lib/softint \39 lib/softfloat \40 35 srv/bd/ata_bd \ 41 36 srv/bd/file_bd \ … … 60 55 app/init \ 61 56 app/getvc \ 57 app/redir \ 62 58 app/bdsh 63 59 … … 76 72 endif 77 73 74 LIBC = lib/libc 75 LIBS = \ 76 lib/libfs \ 77 lib/libblock \ 78 lib/softint \ 79 lib/softfloat 80 81 LIBC_BUILD = $(addsuffix .build,$(LIBC)) 82 LIBS_BUILD = $(addsuffix .build,$(LIBS)) 83 78 84 BUILDS := $(addsuffix .build,$(DIRS)) 79 CLEANS := $(addsuffix .clean,$(DIRS)) 85 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 80 86 81 .PHONY: all $( BUILDS) $(CLEANS) clean87 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(BUILDS) $(CLEANS) clean 82 88 83 all: ../Makefile.config ../config.h ../config.defs$(BUILDS)89 all: $(BUILDS) 84 90 85 91 clean: $(CLEANS) … … 88 94 -$(MAKE) -C $(basename $@) clean 89 95 90 $(BUILDS): 96 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) 91 97 $(MAKE) -C $(basename $@) all 98 99 $(LIBS_BUILD): $(LIBC_BUILD) 100 $(MAKE) -C $(basename $@) all 101 102 $(LIBC_BUILD): 103 $(MAKE) -C $(basename $@) all
Note:
See TracChangeset
for help on using the changeset viewer.