coro/Makefile

7 lines
119 B
Makefile
Raw Permalink Normal View History

2022-11-13 01:12:35 +01:00
example: example.c coro.h
$(CC) -o $@ $< `pkg-config --libs --cflags raylib` -lm
.PHONY: clean
clean:
rm -f example