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