diff options
Diffstat (limited to 'apps/Makefile')
-rw-r--r-- | apps/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile index 17af36a..194d7df 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -7,7 +7,7 @@ OC = ../cross/opt/bin/i686-elf-objcopy # Flags to make the binary smaller TODO: Remove after indirect pointer support! # TODO: Fix optimization flags (relocation of functions) -CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -O0 +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 @@ -18,6 +18,7 @@ all: $(COBJS) @$(CC) -c $(CFLAGS) $< -o $@ @$(LD) -o $(@:.o=.elf) -Tlink.ld -L../build/ $@ -lc -lgui @$(OC) -O binary $(@:.o=.elf) ../build/apps/$(@:.o=) +# @cp $(@:.o=.elf) ../build/apps/$(@:.o=.dbg) # %.o: %.c # @mkdir -p ../build/apps/ |