bec03e3d1b
- TTY driver - VGA driver - kernel's main function - Makefiles *NOTE*: iceOS not works at this stage.
10 lines
187 B
Makefile
10 lines
187 B
Makefile
OBJS = stdio.o string.o
|
|
|
|
CC = i686-elf-gcc # cross-compiler
|
|
CFLAGS = -m32 -fno-stack-protector -ffreestanding -Wall -Wextra -Werror -g -c
|
|
|
|
|
|
all:${OBJS}
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) $< -o $@
|