8 lines
69 B
Makefile
8 lines
69 B
Makefile
CXX = g++
|
|
|
|
.PHONY: default
|
|
default: main;
|
|
|
|
%: %.cpp
|
|
$(CXX) -o $@ $<
|