Rev 3803 | Rev 3969 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3803 | Rev 3882 | ||
|---|---|---|---|
| Line 52... | Line 52... | ||
| 52 | app/trace \ |
52 | app/trace \ |
| 53 | app/klog \ |
53 | app/klog \ |
| 54 | app/init \ |
54 | app/init \ |
| 55 | app/bdsh |
55 | app/bdsh |
| 56 | 56 | ||
| 57 | ifeq ($(ARCH), amd64) |
57 | ifeq ($(UARCH),amd64) |
| 58 | DIRS += srv/pci |
58 | DIRS += srv/pci |
| 59 | endif |
59 | endif |
| 60 | 60 | ||
| 61 | ifeq ($(ARCH), ia32) |
61 | ifeq ($(UARCH),ia32) |
| 62 | DIRS += srv/pci |
62 | DIRS += srv/pci |
| 63 | endif |
63 | endif |
| 64 | 64 | ||
| 65 | ifeq ($(ARCH), mips32) |
- | |
| 66 | CFLAGS += -DCONFIG_MIPS_FPU |
- | |
| 67 | endif |
- | |
| 68 | - | ||
| 69 | ifeq ($(ARCH), mips32eb) |
- | |
| 70 | CFLAGS += -DCONFIG_MIPS_FPU |
- | |
| 71 | endif |
- | |
| 72 | - | ||
| 73 | BUILDS := $(addsuffix .build,$(DIRS)) |
65 | BUILDS := $(addsuffix .build,$(DIRS)) |
| 74 | CLEANS := $(addsuffix .clean,$(DIRS)) |
66 | CLEANS := $(addsuffix .clean,$(DIRS)) |
| 75 | 67 | ||
| 76 | .PHONY: all $(BUILDS) $(CLEANS) clean |
68 | .PHONY: all $(BUILDS) $(CLEANS) clean |
| 77 | 69 | ||
| 78 | all: ../Makefile.config $(BUILDS) |
70 | all: ../Makefile.config ../config.h ../config.defs $(BUILDS) |
| 79 | 71 | ||
| 80 | clean: $(CLEANS) |
72 | clean: $(CLEANS) |
| 81 | 73 | ||
| 82 | $(CLEANS): |
74 | $(CLEANS): |
| 83 | -$(MAKE) -C $(basename $@) clean |
75 | -$(MAKE) -C $(basename $@) clean |