From 1686173757af4e453e7a32d152ec4bd20d789652 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 1 Aug 2020 18:37:15 +0200 Subject: Started multitasking --- apps/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/Makefile') diff --git a/apps/Makefile b/apps/Makefile index 574f135..56e5472 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,6 +1,6 @@ # MIT License, Copyright (c) 2020 Marvin Borner -COBJS = test.o +COBJS = a.o b.o root.o CC = ../cross/opt/bin/i686-elf-gcc LD = ../cross/opt/bin/i686-elf-ld OC = ../cross/opt/bin/i686-elf-objcopy @@ -10,7 +10,7 @@ CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -ffunction- all: $(COBJS) %.o: %.c - @mkdir -p ../build/ + @mkdir -p ../build/apps/ @$(CC) -c $(CFLAGS) $< -o $@ @$(LD) -o $(@:.o=.elf) -Tlink.ld $@ - @$(OC) -O binary $(@:.o=.elf) ../build/$(@:.o=) + @$(OC) -O binary $(@:.o=.elf) ../build/apps/$(@:.o=) -- cgit v1.2.3