Rev 3403 | Rev 4346 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3403 | Rev 3674 | ||
---|---|---|---|
Line 78... | Line 78... | ||
78 | 78 | ||
79 | ifeq ($(CONFIG_SMP),y) |
79 | ifeq ($(CONFIG_SMP),y) |
80 | DEFS += -DCONFIG_SMP |
80 | DEFS += -DCONFIG_SMP |
81 | endif |
81 | endif |
82 | 82 | ||
- | 83 | ifeq ($(CONFIG_SGCN),y) |
|
- | 84 | DEFS += -DCONFIG_SGCN |
|
- | 85 | endif |
|
- | 86 | ||
- | 87 | ifeq ($(MACHINE),us) |
|
- | 88 | DEFS += -DUS |
|
- | 89 | endif |
|
- | 90 | ||
- | 91 | ifeq ($(MACHINE),us3) |
|
- | 92 | DEFS += -DUS3 |
|
- | 93 | endif |
|
- | 94 | ||
83 | ARCH_SOURCES = \ |
95 | ARCH_SOURCES = \ |
84 | arch/$(ARCH)/src/cpu/cpu.c \ |
96 | arch/$(ARCH)/src/cpu/cpu.c \ |
85 | arch/$(ARCH)/src/asm.S \ |
97 | arch/$(ARCH)/src/asm.S \ |
86 | arch/$(ARCH)/src/panic.S \ |
98 | arch/$(ARCH)/src/panic.S \ |
87 | arch/$(ARCH)/src/console.c \ |
99 | arch/$(ARCH)/src/console.c \ |
Line 104... | Line 116... | ||
104 | arch/$(ARCH)/src/trap/interrupt.c \ |
116 | arch/$(ARCH)/src/trap/interrupt.c \ |
105 | arch/$(ARCH)/src/ddi/ddi.c \ |
117 | arch/$(ARCH)/src/ddi/ddi.c \ |
106 | arch/$(ARCH)/src/drivers/tick.c \ |
118 | arch/$(ARCH)/src/drivers/tick.c \ |
107 | arch/$(ARCH)/src/drivers/kbd.c \ |
119 | arch/$(ARCH)/src/drivers/kbd.c \ |
108 | arch/$(ARCH)/src/drivers/scr.c \ |
120 | arch/$(ARCH)/src/drivers/scr.c \ |
- | 121 | arch/$(ARCH)/src/drivers/sgcn.c \ |
|
109 | arch/$(ARCH)/src/drivers/pci.c |
122 | arch/$(ARCH)/src/drivers/pci.c |
110 | 123 | ||
- | 124 | ||
111 | ifeq ($(CONFIG_SMP),y) |
125 | ifeq ($(CONFIG_SMP),y) |
112 | ARCH_SOURCES += \ |
126 | ARCH_SOURCES += \ |
113 | arch/$(ARCH)/src/smp/ipi.c \ |
127 | arch/$(ARCH)/src/smp/ipi.c \ |
114 | arch/$(ARCH)/src/smp/smp.c |
128 | arch/$(ARCH)/src/smp/smp.c |
115 | endif |
129 | endif |