You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
182 B
Makefile

SHELL=/bin/sh
#i turned raymath into a library to avoid redefinition errors
libyesmath.a: raymath.o
ar rcs libyesmath.a raymath.o
raymath.o: raymath.c
gcc -DYESMATH -c raymath.c