From f0fe7c5ff003c714e76a7522967a0519a191cdf7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 24 Oct 2020 13:20:35 +0200 Subject: Forced ccache compilation ...and some fixes :) --- libtxt/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libtxt') diff --git a/libtxt/Makefile b/libtxt/Makefile index 62a2afb..3731aa2 100644 --- a/libtxt/Makefile +++ b/libtxt/Makefile @@ -1,18 +1,18 @@ # MIT License, Copyright (c) 2020 Marvin Borner COBJS = keymap.o -CC = ../cross/opt/bin/i686-elf-gcc -LD = ../cross/opt/bin/i686-elf-ld -AR = ../cross/opt/bin/i686-elf-ar +CC = ccache ../cross/opt/bin/i686-elf-gcc +LD = ccache ../cross/opt/bin/i686-elf-ld +AR = ccache ../cross/opt/bin/i686-elf-ar CFLAGS = -Wall -Wextra -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/ -I../libc/inc/ -fPIE -Duserspace -Ofast -all: libgui clean +all: libtxt %.o: %.c @$(CC) -c $(CFLAGS) $< -o $@ -libgui: $(COBJS) +libtxt: $(COBJS) @mkdir -p ../build/ @$(AR) rcs ../build/libtxt.a $+ -- cgit v1.2.3