Makefiles for basic projects are typically just two to five lines long. It's really different than a large project system, or the absolutely crazy things that autoconf generates.
all:
cc myprogram.c
clean:
rm -f myprogram.o myprogram
They're extremely simple in simple scenarios. It's just a simple format for writing down the commands you run while working.
all: cc myprogram.c
clean: rm -f myprogram.o myprogram
They're extremely simple in simple scenarios. It's just a simple format for writing down the commands you run while working.