6 lines
86 B
Makefile
6 lines
86 B
Makefile
all:
|
|
$(CXX) reverse_copy.cpp -std=c++11 -o reverse_copy
|
|
|
|
clean:
|
|
rm -r reverse_copy
|