Rev 4344 | Rev 4373 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4344 | Rev 4354 | ||
|---|---|---|---|
| Line 30... | Line 30... | ||
| 30 | # |
30 | # |
| 31 | 31 | ||
| 32 | -include ../Makefile.config |
32 | -include ../Makefile.config |
| 33 | 33 | ||
| 34 | DIRS = \ |
34 | DIRS = \ |
| 35 | lib/rtld \ |
- | |
| 36 | lib/libc \ |
35 | lib/libc \ |
| 37 | lib/libfs \ |
36 | lib/libfs \ |
| 38 | lib/libblock \ |
37 | lib/libblock \ |
| 39 | lib/softint \ |
38 | lib/softint \ |
| 40 | lib/softfloat \ |
39 | lib/softfloat \ |
| Line 77... | Line 76... | ||
| 77 | BUILDS := $(addsuffix .build,$(DIRS)) |
76 | BUILDS := $(addsuffix .build,$(DIRS)) |
| 78 | CLEANS := $(addsuffix .clean,$(DIRS)) |
77 | CLEANS := $(addsuffix .clean,$(DIRS)) |
| 79 | 78 | ||
| 80 | .PHONY: all $(BUILDS) $(CLEANS) clean kerninc |
79 | .PHONY: all $(BUILDS) $(CLEANS) clean kerninc |
| 81 | 80 | ||
| 82 | all: ../Makefile.config ../config.h ../config.defs kerninc $(BUILDS) |
81 | all: ../Makefile.config ../config.h ../config.defs $(BUILDS) |
| 83 | 82 | ||
| 84 | clean: $(CLEANS) |
83 | clean: $(CLEANS) |
| 85 | 84 | ||
| 86 | kerninc: |
- | |
| 87 | $(MAKE) -C lib/libc kerninc |
- | |
| 88 | - | ||
| 89 | $(CLEANS): |
85 | $(CLEANS): |
| 90 | -$(MAKE) -C $(basename $@) clean |
86 | -$(MAKE) -C $(basename $@) clean |
| 91 | 87 | ||
| 92 | $(BUILDS): |
88 | $(BUILDS): |
| 93 | $(MAKE) -C $(basename $@) all |
89 | $(MAKE) -C $(basename $@) all |