CC = gcc CFLAGS = -pg -g LDFLAGS = -pg -g LDLIBS = -lraylib -lm objects = c3d.o c3d: $(objects) $(objects): %.o: %.c clean: rm -f *.o c3d