summaryrefslogtreecommitdiff
path: root/kc/boot
diff options
context:
space:
mode:
Diffstat (limited to 'kc/boot')
-rw-r--r--kc/boot/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/kc/boot/Makefile b/kc/boot/Makefile
deleted file mode 100644
index b90f183..0000000
--- a/kc/boot/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-include ../../defaults.mk
-include ../../efi.mk
-include ../defaults.mk
-
-VPATH := ../../lib ../
-
-TARGET := efi.os
-.DEFAULT: $(TARGET)
-
-CPPFLAGS += -I../../api -I ../api -I../../lib
-
-CFLAGS += -fshort-wchar
-
-OBJS := entry_x86_64.o reloc_x86_64.o dynamic_x86_64.o \
- kc_main.o elf64.o memcmp.o memcpy.o \
- memmove.o memset.o loader_paging.o
-
-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)
-