summaryrefslogtreecommitdiff
path: root/kc/boot/Makefile
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2024-02-25 15:16:24 +0000
committerAda Christine <adachristine18@gmail.com>2024-02-25 15:16:24 +0000
commitb9cae0d43fc9a56b430dbee5e7ae795b63db6ad2 (patch)
treea57f199ba9f4008cad7d9b466be4988f1e867d5e /kc/boot/Makefile
parentf9d1a1e3b09ef89c156524d40e1c9029f96a3373 (diff)
garbage day
Diffstat (limited to 'kc/boot/Makefile')
-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)
-