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