From 930d5a634a110c8cf63de94bf89b045ddc6bf21c Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Sun, 18 Apr 2021 06:44:51 -0400 Subject: [PATCH] Improve makefile. --- makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 623ef81..b678d38 100644 --- a/makefile +++ b/makefile @@ -26,7 +26,9 @@ endif include $(CEDEV)/meta/makefile.mk src/font.h src/font.c: font/genfont - @$< + $(Q)echo [running] $< + $(Q)$< font/genfont: font/genfont.c - @$(CC) -O3 -flto $< `pkg-config --cflags --libs freetype2` -o $@ + $(Q)echo [compiling] $< + $(Q)$(CC) -O3 -flto $< `pkg-config --cflags --libs freetype2` -o $@