summaryrefslogtreecommitdiff
path: root/kernel/Makefile
blob: 36cca4ccaf003d0cb2001d8a76bbf412ae788567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
include ../defaults.mk

TARGET := kernel.os
.DEFAULT: $(TARGET)

# EFI API for temporary things

EFIAPIDIR := /usr/local/include/efi

CPPFLAGS += -I../api -I$(EFIAPIDIR) -I$(EFIAPIDIR)/$(ARCH) -I$(EFIAPIDIR)/protocol
CFLAGS += -Wno-unused-const-variable -Wno-unused-function -fvisibility=hidden -g

LIBDIRS += -L$(dir $(shell $(CC) -print-libgcc-file-name))
LDSCRIPT := kernel.ld
LDFLAGS += -z max-page-size=4096 --export-dynamic
LOADLIBES := -lgcc

SOBJS := 
GOBJS := entry_efi.o
IOBJS :=

$(SOBJS): CFLAGS += -fPIC
# __attribute__((interrupt)) requires -mgeneral-regs-only
$(IOBJS): CFLAGS += -mgeneral-regs-only
$(IOBJS) $(GOBJS): CFLAGS += -mcmodel=kernel

OBJS := $(SOBJS) $(GOBJS) $(IOBJS)
DEPS := $(patsubst %.o,%.d,$(OBJS))

$(TARGET): $(LDSCRIPT) $(MAKEFILE_LIST)
$(TARGET): $(OBJS)

CLEANLIST := $(wildcard $(OBJS) $(TARGET)) 
DCLEANLIST := $(wildcard $(DEPS))

include ../rules.mk
-include $(DEPS)

.DEFAULT: $(TARGET)