diff options
author | Marvin Borner | 2020-09-04 15:50:21 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-04 15:50:21 +0200 |
commit | b8f00b77e965c73a047e71193c8c6e2d7488f34d (patch) | |
tree | 168354a8cd9b8a69a2f06a09e8ce73aadd4e2521 /apps/Makefile | |
parent | 15a8cb8fa64b12d6c0b65eafb226971cd66dc3cd (diff) |
Added mandelbrot demo and fpu driver
Diffstat (limited to 'apps/Makefile')
-rw-r--r-- | apps/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile index 6a22e35..44222d9 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,6 +1,6 @@ # MIT License, Copyright (c) 2020 Marvin Borner -COBJS = init.o wm.o window.o test.o +COBJS = init.o wm.o mandelbrot.o window.o test.o CC = ../cross/opt/bin/i686-elf-gcc LD = ../cross/opt/bin/i686-elf-ld OC = ../cross/opt/bin/i686-elf-objcopy @@ -8,7 +8,7 @@ OC = ../cross/opt/bin/i686-elf-objcopy # Flags to make the binary smaller TODO: Remove after indirect pointer support! CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os -CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -I../libc/inc/ -I../libgui/inc/ -fPIE -Duserspace +CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -fno-builtin -std=c99 -m32 -pedantic-errors -I../libc/inc/ -I../libgui/inc/ -fPIE -Duserspace all: $(COBJS) |