coro/Makefile
2022-11-13 01:12:35 +01:00

7 lines
119 B
Makefile

example: example.c coro.h
$(CC) -o $@ $< `pkg-config --libs --cflags raylib` -lm
.PHONY: clean
clean:
rm -f example