13 lines
209 B
Makefile
13 lines
209 B
Makefile
all: main
|
|
|
|
main: hw2pr2.o node.o
|
|
g++ -std=c++17 hw2pr2.o node.o -o main
|
|
|
|
hw2pr1.o: hw2pr2.cpp
|
|
g++ -std=c++17 -c hw2pr2.cpp
|
|
|
|
node.o: node.cpp node.h
|
|
g++ -std=c++17 -c node.cpp
|
|
|
|
clean:
|
|
rm -rf *.o *.gch main
|