1
0
raytracing-in-a-weekend-oop/makefile

8 lines
69 B
Makefile

CXX = g++
.PHONY: default
default: main;
%: %.cpp
$(CXX) -o $@ $<