diff options
author | Marvin Borner | 2020-10-24 13:20:35 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-24 13:20:35 +0200 |
commit | f0fe7c5ff003c714e76a7522967a0519a191cdf7 (patch) | |
tree | 517679e7b5227896732081961c37d4331507ee36 /apps/Makefile | |
parent | e5dd74563baf5b766b7bf226a0a42a661a14f974 (diff) |
Forced ccache compilation
...and some fixes :)
Diffstat (limited to 'apps/Makefile')
-rw-r--r-- | apps/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/Makefile b/apps/Makefile index 9ac92b7..155e069 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,9 +1,9 @@ # MIT License, Copyright (c) 2020 Marvin Borner 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 +CC = ccache ../cross/opt/bin/i686-elf-gcc +LD = ccache ../cross/opt/bin/i686-elf-ld +OC = ccache ../cross/opt/bin/i686-elf-objcopy CFLAGS = -Wall -Wextra -nostdlib -nostdinc -fno-builtin -std=c99 -m32 -pedantic-errors -I../libc/inc/ -I../libgui/inc/ -I../libtxt/inc/ -fPIE -Duserspace -Os |