From 55cada295c1be54b84fc30360134c4c73e3cacf1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 1 Aug 2020 16:26:31 +0200 Subject: Restructured makefiles --- apps/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 apps/Makefile (limited to 'apps/Makefile') diff --git a/apps/Makefile b/apps/Makefile new file mode 100644 index 0000000..16f108a --- /dev/null +++ b/apps/Makefile @@ -0,0 +1,19 @@ +# MIT License, Copyright (c) 2020 Marvin Borner + +COBJS = test.o +CC = ../cross/opt/bin/i686-elf-gcc +LD = ../cross/opt/bin/i686-elf-ld +OC = ../cross/opt/bin/i686-elf-objcopy + +# TODO: Fix crash without optimizations +CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os + +CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -I../src/lib/inc/ -fPIE -Os + +all: $(COBJS) + +%.o: %.c + @mkdir -p ../build/ + @$(CC) -c $(CFLAGS) $< -o $@ + @$(LD) -o $(@:.o=.elf) -Tlink.ld $@ + @$(OC) -O binary $(@:.o=.elf) ../build/$(@:.o=) -- cgit v1.2.3