# this is the makefile you'll submit along with your project, # you can modify it as per your program, keeping following in mind... # 1. you CANNOT modify compilation rules for "driver.o", # 2. final binary file has to be "unum", and # 3. DO NOT USE "*.*" for turnin, instead use "*" or " # "unum" target compilation, add all the ".o" files in your project # here replacing "..." unum: driver.o ... g++ -o unum driver.o ... # add compilation rules for all the "..." object files # ... # ... # ... # finally, compilation rule for driver.o driver.o: driver.cpp numbers.h g++ -c driver.cpp