From 980b181e76cb3f112a481656336c88aac10b66c4 Mon Sep 17 00:00:00 2001 From: shockrah Date: Sat, 5 Oct 2019 20:46:10 -0700 Subject: [PATCH] added serial to list of objects + changed fb.o to ports.o --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index a090fa9..25fb6d3 100644 --- a/makefile +++ b/makefile @@ -3,7 +3,7 @@ ASM=nasm LINK=ld ISO=genisoimage -OBJECTS=loader.o framebuffer.o fb.o stlio.o tests.o +OBJECTS=loader.o serial.o framebuffer.o ports.o stlio.o tests.o AFLAGS=-f elf32 CFLAGS=-m32 -nostdlib -nostdinc -fno-builtin -fno-stack-protector -nostartfiles \ -nodefaultlibs -Wall -Wextra -Werror -c