From b8766fcef6dcc40bd46584015375ea76518c6201 Mon Sep 17 00:00:00 2001 From: cflip Date: Mon, 19 Sep 2022 21:39:53 -0600 Subject: Improve Makefile build system Building each source file as a separate object makes it faster to compile when only changing one source file, and also allows you to compile with multiple threads when building the whole project. --- .gitignore | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 58f0b1b..3bfe699 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ -# Ignore executable binary -cfws +# Ignore IDE and editor project files +.vscode -.vscode \ No newline at end of file +# Ignore build output +cfws +*.o -- cgit v1.2.3