/* Author : Michael Robinson Program : Makefile Purpose : To show how to use the makefile to compile multiple programs and headings Updated : July 10, 2014 */ makeHeadings: headingOne.c headingTwo.c headingThree.c headingMain.c gcc -o makeHeadings.exe headingOne.c headingTwo.c headingThree.c headingMain.c