From 7abe06209472169dd00e7ca5f642d9dd8dc4f8ec Mon Sep 17 00:00:00 2001 From: andresmaldonado2 <90724352+andresmaldonado2@users.noreply.github.com> Date: Sun, 3 Jul 2022 03:05:10 -0400 Subject: [PATCH] Fixes spacing issue in Makefile Believe makefile requires tabs over spaces, fixes the error "Makefile:48: *** missing separator. Stop." when trying to run make command --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index cbddaa7..69debfb 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,6 @@ debug: cmake --build ./build --config Debug --target all -j 10 all: - make clear - make protocols - make release \ No newline at end of file + make clear + make protocols + make release