# kjr * This makefile works as a starting example # type make to compile and link application lesson1: lesson1.o gcc -o new lesson1.o lesson1.o: lesson1.c gcc -c lesson1.c # to clean up afterward type make clean clean: rm lesson1.o rm new