coro/Makefile

7 lines
119 B
Makefile

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