summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@sendula.com>2021-08-02 01:08:13 +0100
committerdavidovski <david@sendula.com>2021-08-02 01:08:13 +0100
commit3b65cbb116e71c89a5c2c0838ef96f229838ac6e (patch)
tree0c550238678c6036d0af1d14565bc985ff940316
parent81fdb8ee7f874898523cd52393854c3b2a4972ef (diff)
fixed makefile
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92a2629..35d0205 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ build: src/main.c
${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}
+ clang -framework CoreVideo -framework IOKit -framework Cocoa -framework GLUT -framework OpenGL libraylib.a src/main.c src/mst.c -o ${PROG}
clean: ${PROG}
rm ${PROG}