You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
316 B
Makefile

ABC: driver.o abc.o general_functions.o
CC -std=c++11 -o ABC driver.o abc.o general_functions.o && rm *.o
driver.o: driver.cpp abc.h
CC -std=c++11 -c driver.cpp
abc.o: abc.cpp general_functions.h
CC -std=c++11 -c abc.cpp
general_functions.o: general_functions.cpp
CC -std=c++11 -c general_functions.cpp