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
This commit is contained in:
andresmaldonado2 2022-07-03 03:05:10 -04:00 committed by GitHub
parent 0a113cfd56
commit 7abe062094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,6 @@ debug:
cmake --build ./build --config Debug --target all -j 10
all:
make clear
make protocols
make release
make clear
make protocols
make release