6 lines
81 B
Makefile
6 lines
81 B
Makefile
CXX = g++
|
|
#ls -d * | entr sh -c "make main && ./main"
|
|
|
|
%: %.cpp
|
|
$(CXX) -o $@ $<
|