aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-07-29 15:55:13 +0200
committerMarvin Borner2020-07-29 15:55:13 +0200
commitf092bf03baf3b2c13c9dc462bdc697caddccd347 (patch)
tree90844499041a648692704a3e5b0040634963fb33 /Makefile
parentbe0246208d1fe7727f94221ea7562f9a9cce1659 (diff)
Added elf loading and test app
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4b97fcc..20e236f 100644
--- a/Makefile
+++ b/Makefile
@@ -12,11 +12,13 @@ COBJS = src/main.o \
src/features/fs.o \
src/features/psf.o \
src/features/gui.o \
+ src/features/elf.o \
src/lib/str.o \
src/lib/mem.o \
src/lib/math.o \
src/lib/conv.o \
src/lib/print.o
+CTOBJS = src/test.o
CC = cross/opt/bin/i686-elf-gcc
LD = cross/opt/bin/i686-elf-ld
AS = nasm
@@ -39,11 +41,14 @@ all: compile clean
kernel: $(COBJS)
-compile: kernel
+apps: $(CTOBJS)
+
+compile: kernel apps
@mkdir -p build/
@$(AS) -f bin src/entry.asm -o build/boot.bin
@$(LD) -N -emain -Ttext 0x00050000 -o build/kernel.bin $(COBJS) --oformat binary
@$(CC) $(CFLAGS) -emain -o build/debug.o $(COBJS)
+ @cp $(CTOBJS) build/
clean:
@find src/ -name "*.o" -type f -delete