PCC=pcc
all: turtle
clean:
$(RM) *.o turtle
turtle.mc:;
%.mc.o: %.mc
$(PCC) -c $< -o $@
turtle: turtle.mc.o turtle.cpp
$(CXX) -std=c++11 $^ -lcairo -o $@