From b129954d4d2f3fcc176f3bea96110e9dfd188bd5 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Fri, 21 Apr 2023 19:19:11 -0400 Subject: feat: improve compilation a bit. - tcc -> gcc (noticeably faster compilation) --- makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 894fd08..832c245 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ # make uninstall ## C compiler -CC=gcc +CC=tcc # much faster compilation than gcc ## Main file SRC=rose.c @@ -53,6 +53,13 @@ DEFAULT_DIR=/home/loki/Documents/core/software/fresh/C/rose-browser/rosenrot CURRENT_DIR=`pwd` build: $(SRC) $(PLUGS) $(CONFIG) + # Recompute constants + cd /plugins/readability/ + sh recompute_READABILITY_N.sh + cd - + cd /plugins/style + sh recompute_STYLE_N.sh + cd - # Make cache mkdir -p $(CURRENT_CACHE_DIR) # Hardcode cache path -- cgit v1.2.3