Requirements for CompSci-351
starting/executing a makefile
make -f makefileName
sample makefile contents make sure you have "tabs" before every new line of code
# Create executable file "main" main: time.o g++ main.cpp time.o -o main # Create object file "time.o" time.o: time1.cpp time1.h g++ -c time1.cpp -o time.o
reference: http://linuxgazette.net/issue83/heriyanto.html