Subversion Repositories HelenOS

Rev

Rev 1802 | Rev 2071 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1802 Rev 2064
Line 40... Line 40...
40
 
40
 
41
CFLAGS += -mconstant-gp -fno-unwind-tables -mfixed-range=f32-f127
41
CFLAGS += -mconstant-gp -fno-unwind-tables -mfixed-range=f32-f127
42
LFLAGS += -EL
42
LFLAGS += -EL
43
AFLAGS += -mconstant-gp
43
AFLAGS += -mconstant-gp
44
 
44
 
45
DEFS += -D__64_BITS__ -DINIT0_ADDRESS=$(INIT0_ADDRESS) -DINIT0_SIZE=$(INIT0_SIZE)
45
DEFS += -D__64_BITS__ -DINIT0_ADDRESS=$(INIT0_ADDRESS) -DINIT0_SIZE=$(INIT0_SIZE) -D$(MACHINE)
-
 
46
 
-
 
47
 
46
 
48
 
47
## Compile with page hash table support.
49
## Compile with page hash table support.
48
#
50
#
49
 
51
 
50
CONFIG_PAGE_HT = y
52
CONFIG_PAGE_HT = y
Line 67... Line 69...
67
	arch/$(ARCH)/src/asm.S \
69
	arch/$(ARCH)/src/asm.S \
68
	arch/$(ARCH)/src/dummy.s \
70
	arch/$(ARCH)/src/dummy.s \
69
	arch/$(ARCH)/src/ia64.c \
71
	arch/$(ARCH)/src/ia64.c \
70
	arch/$(ARCH)/src/fpu_context.c \
72
	arch/$(ARCH)/src/fpu_context.c \
71
	arch/$(ARCH)/src/context.S \
73
	arch/$(ARCH)/src/context.S \
72
	arch/$(ARCH)/src/ski/ski.c \
-
 
73
	arch/$(ARCH)/src/cpu/cpu.c \
74
	arch/$(ARCH)/src/cpu/cpu.c \
74
	arch/$(ARCH)/src/ivt.S \
75
	arch/$(ARCH)/src/ivt.S \
75
	arch/$(ARCH)/src/interrupt.c \
76
	arch/$(ARCH)/src/interrupt.c \
76
	arch/$(ARCH)/src/mm/as.c \
77
	arch/$(ARCH)/src/mm/as.c \
77
	arch/$(ARCH)/src/mm/frame.c \
78
	arch/$(ARCH)/src/mm/frame.c \
Line 79... Line 80...
79
	arch/$(ARCH)/src/mm/tlb.c \
80
	arch/$(ARCH)/src/mm/tlb.c \
80
	arch/$(ARCH)/src/mm/vhpt.c \
81
	arch/$(ARCH)/src/mm/vhpt.c \
81
	arch/$(ARCH)/src/proc/scheduler.c \
82
	arch/$(ARCH)/src/proc/scheduler.c \
82
	arch/$(ARCH)/src/ddi/ddi.c \
83
	arch/$(ARCH)/src/ddi/ddi.c \
83
	arch/$(ARCH)/src/drivers/it.c
84
	arch/$(ARCH)/src/drivers/it.c
-
 
85
 
-
 
86
ifeq ($(MACHINE),ski)
-
 
87
	ARCH_SOURCES += arch/$(ARCH)/src/ski/ski.c 
-
 
88
	DEFS += -DSKI
-
 
89
endif
-
 
90
 
-
 
91
ifeq ($(MACHINE),i460GX)
-
 
92
	ARCH_SOURCES += arch/$(ARCH)/src/simics/ega.c
-
 
93
	DEFS += -DI460GX
-
 
94
endif
-
 
95