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