From 4528b2347ac72ffdabdbe4d9e7bf7789c81e664f Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Tue, 12 Oct 2021 21:53:40 +0200 Subject: Adding tty --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 127e576..9e7e302 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ ARCH=i686-elf CC=$(ARCH)-gcc AS=$(ARCH)-as -CFLAGS=-ffreestanding -O2 -Wall -Wextra -ggdb +CFLAGS=-ffreestanding -O2 -Wall -Wextra MKDIR=mkdir -p RM=rm -rf @@ -15,7 +15,7 @@ ISO_DIR=isodir TARGET=myos -OBJ_FILES=boot.o kernel.o gdt.o idt.o +OBJ_FILES=boot.o kernel.o gdt.o idt.o keyboard.o vga.o string.o tty.o CRTBEGIN_OBJ=$(shell $(CC) -print-file-name=crtbegin.o) CRTEND_OBJ=$(shell $(CC) -print-file-name=crtend.o) OBJ=$(BUILD_DIR)/crti.o $(CRTBEGIN_OBJ) $(patsubst %,$(BUILD_DIR)/%,$(OBJ_FILES)) $(CRTEND_OBJ) $(BUILD_DIR)/crtn.o -- cgit v1.2.3