added features :)

This commit is contained in:
InventorXtreme 2024-03-11 20:52:34 -04:00
parent 34e70de2f9
commit 931f7e5c48
7 changed files with 147 additions and 106 deletions

View file

@ -2,7 +2,7 @@ CC = clang #Set compiler
CFLAGS = -pg -g -Wall -O2 -pg #set compiler flags
LDFLAGS = -pg -g #set linker flags
LDLIBS = -lraylib -lm #set libraries to use
objects = c3d.o reader.o arrayfuncs.o vecfunc.c #list all object files
objects = c3d.o reader.o arrayfuncs.o vecfunc.o #list all object files
c3d: $(objects) #State that to make the c3d executeable, we need all objects