using UBUNTU 20.4 and compiler version gcc (Ubuntu 9.3.0-10ubuntu2) 9.3.0,
Im very new to vscode- I built a program in C, getting in its main arguments two strings (as file names)
so I built this Makefile to save myself time during checking my code compiling and running, and wrote it like this:
all: //tried with and without "all:" line//
gcc main.c
./a.out ex1.bin ex2.bin
rm -i a.out
and for some reason after execute make I get this denied in the Terminal and getting this:
Makefile:2: *** missing separator. Stop.
what did I do wrong and how do I fix it?
thanks for the helpers