aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2021-04-06 15:55:30 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2021-04-06 15:55:30 +0200
commitdb553d05824ae463752c8b528feac963e41d9f1c (patch)
treecbb203f46a83dc8f16ae9fe6809c6b681108e3e0 /src/Makefile
parent76c95cff93a8c4832d6276f2f51055bc91e17535 (diff)
Add Interrupt management
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index f55cad5..b95e38d 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -10,7 +10,6 @@ UTILS_OBJ := $(addsuffix .o,$(basename $(shell find ./utils -name "*.[c|S]")))
all: $(EXEC)
$(EXEC): boot/boot.o $(UTILS_OBJ) bringelle.o
- echo "Boot obj:" $(BOOT_OBJ)
ld -Ttext=0x00100000 -melf_i386 -nostdlib --oformat=binary -o bringelle $^
%.o: %.S