Now this should be complete
Added basic shell and fixed various bugs...now iceos should be "complete".
This commit is contained in:
10
kernel/shell/Makefile
Normal file
10
kernel/shell/Makefile
Normal file
@@ -0,0 +1,10 @@
|
||||
OBJS = shell.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 $@
|
||||
Reference in New Issue
Block a user