fixed mst calculations

This commit is contained in:
davidovski 2021-08-01 15:36:18 +01:00
parent 0f5e0c8d91
commit e3e3eb890f
6 changed files with 79 additions and 55 deletions

View file

@ -8,7 +8,7 @@ install: ${PROG}
cp ${PROG} ~/.local/bin/
build: src/main.c
${CC} src/main.c -o ${PROG} ${FLAGS}
${CC} src/main.c src/mst.c -o ${PROG} ${FLAGS}
build-osx: ${PROG}
clang -framework CoreVideo -framework IOKit -framework Cocoa -framework GLUT -framework OpenGL libraylib.a ${PROG}.c -o ${PROG}