diff options
author | Marvin Borner | 2020-08-01 16:26:31 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-01 16:26:31 +0200 |
commit | 55cada295c1be54b84fc30360134c4c73e3cacf1 (patch) | |
tree | 681be98fab1cf0703f09c50726f01f90f6b2ee68 /apps/Makefile | |
parent | 644b6073c99ae4a57a51f0bae6e949e7bba56a2f (diff) |
Restructured makefiles
Diffstat (limited to 'apps/Makefile')
-rw-r--r-- | apps/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
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=) |