summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordavidovski <david@sendula.com>2021-08-01 15:36:18 +0100
committerdavidovski <david@sendula.com>2021-08-01 15:36:18 +0100
commite3e3eb890f876c878c06a046c7c7e96583adc7ed (patch)
treef35d36cc5510893df37bf846be199c6ec1eafb90 /Makefile
parent0f5e0c8d912dcdfe01d6a2bc693ef98eda82c336 (diff)
fixed mst calculations
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9f508fc..92a2629 100644
--- a/Makefile
+++ b/Makefile
@@ -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}