This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
pacciani/examples/turtle/Makefile

15 lines
162 B
Makefile
Raw Normal View History

2023-04-18 22:55:48 +02:00
PCC=pcc
2017-10-12 22:36:56 +02:00
all: turtle
clean:
$(RM) *.o turtle
turtle.mc:;
%.mc.o: %.mc
2023-04-18 22:55:48 +02:00
$(PCC) -c $< -o $@
2017-10-12 22:36:56 +02:00
turtle: turtle.mc.o turtle.cpp
$(CXX) -std=c++11 $^ -lcairo -o $@