10 lines
142 B
Makefile
10 lines
142 B
Makefile
all: main
|
|
|
|
main: hw2pr3.o
|
|
g++ -std=c++17 hw2pr3.o -o main
|
|
|
|
hw2pr1.o: hw2pr2.cpp
|
|
g++ -std=c++17 -c hw2pr2.cpp
|
|
|
|
clean:
|
|
rm -rf *.o *.gch main
|