Rev 4342 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4342 | Rev 4346 | ||
---|---|---|---|
Line 40... | Line 40... | ||
40 | 40 | ||
41 | LFLAGS += -no-check-sections -N |
41 | LFLAGS += -no-check-sections -N |
42 | 42 | ||
43 | DEFS += -D__64_BITS__ |
43 | DEFS += -D__64_BITS__ |
44 | 44 | ||
45 | ifeq ($(MACHINE),us) |
45 | ifeq ($(PROCESSOR),us) |
46 | DEFS += -DUS |
46 | DEFS += -DUS |
47 | endif |
47 | endif |
48 | 48 | ||
49 | ifeq ($(MACHINE),us3) |
49 | ifeq ($(PROCESSOR),us3) |
50 | DEFS += -DUS3 |
50 | DEFS += -DUS3 |
51 | endif |
51 | endif |
52 | 52 | ||
53 | ARCH_SOURCES = \ |
53 | ARCH_SOURCES = \ |
54 | arch/$(KARCH)/src/cpu/cpu.c \ |
54 | arch/$(KARCH)/src/cpu/cpu.c \ |
Line 74... | Line 74... | ||
74 | arch/$(KARCH)/src/trap/interrupt.c \ |
74 | arch/$(KARCH)/src/trap/interrupt.c \ |
75 | arch/$(KARCH)/src/ddi/ddi.c \ |
75 | arch/$(KARCH)/src/ddi/ddi.c \ |
76 | arch/$(KARCH)/src/drivers/tick.c \ |
76 | arch/$(KARCH)/src/drivers/tick.c \ |
77 | arch/$(KARCH)/src/drivers/kbd.c \ |
77 | arch/$(KARCH)/src/drivers/kbd.c \ |
78 | arch/$(KARCH)/src/drivers/sgcn.c \ |
78 | arch/$(KARCH)/src/drivers/sgcn.c \ |
79 | arch/$(KARCH)/src/drivers/pci.c |
79 | arch/$(KARCH)/src/drivers/pci.c \ |
- | 80 | arch/$(KARCH)/src/drivers/fhc.c |
|
80 | 81 | ||
81 | ifeq ($(CONFIG_FB),y) |
82 | ifeq ($(CONFIG_FB),y) |
82 | ARCH_SOURCES += \ |
83 | ARCH_SOURCES += \ |
83 | arch/$(KARCH)/src/drivers/scr.c |
84 | arch/$(KARCH)/src/drivers/scr.c |
84 | endif |
85 | endif |
Line 91... | Line 92... | ||
91 | 92 | ||
92 | ifeq ($(CONFIG_TSB),y) |
93 | ifeq ($(CONFIG_TSB),y) |
93 | ARCH_SOURCES += \ |
94 | ARCH_SOURCES += \ |
94 | arch/$(KARCH)/src/mm/tsb.c |
95 | arch/$(KARCH)/src/mm/tsb.c |
95 | endif |
96 | endif |
96 | - | ||
97 | ifdef CONFIG_Z8530 |
- | |
98 | ARCH_SOURCES += \ |
- | |
99 | arch/$(KARCH)/src/drivers/fhc.c |
- | |
100 | endif |
- |