added more code
This commit is contained in:
15
CPE212/Project_06/makefile
Normal file
15
CPE212/Project_06/makefile
Normal file
@ -0,0 +1,15 @@
|
||||
# Project06 makefile
|
||||
|
||||
|
||||
project06: graph.o main.o
|
||||
g++ graph.o main.o -o project06
|
||||
|
||||
graph.o: graph.h graph.cpp
|
||||
g++ -c graph.cpp
|
||||
|
||||
main.o: graph.h main.cpp
|
||||
g++ -c main.cpp
|
||||
|
||||
clean:
|
||||
rm *.o project06
|
||||
|
Reference in New Issue
Block a user