From 0c3519912b580254eaae9f36f99e0e02efbc7a9a Mon Sep 17 00:00:00 2001 From: JohannesGaessler Date: Mon, 5 Feb 2024 13:03:21 +0100 Subject: [PATCH] fixup! fixup! make: Use ccache for faster compilation --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e98bcbfcd..ba73f0637 100644 --- a/Makefile +++ b/Makefile @@ -627,7 +627,7 @@ clean: # $< is the first prerequisite, i.e. the source file. # Explicitly compile this to an object file so that it can be cached with ccache. -# The source file is then filtered out from the list of all prerequisites $^ and the object file is added instead. +# The source file is then filtered out from $^ (the list of all prerequisites) and the object file is added instead. # Helper function that replaces .c, .cpp, and .cu file endings with .o: GET_OBJ_FILE = $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(patsubst %.cu,%.o,$(1))))