5 lines
94 B
Makefile
5 lines
94 B
Makefile
all: main.o
|
|
main.o: hw1pr3.cpp
|
|
g++ -std=c++17 hw1pr3.cpp -o hw1pr3
|
|
clean:
|
|
rm -rf *.o hw1pr3
|