summaryrefslogtreecommitdiff
path: root/3d-test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '3d-test/Makefile')
-rw-r--r--3d-test/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/3d-test/Makefile b/3d-test/Makefile
new file mode 100644
index 0000000..9d156e9
--- /dev/null
+++ b/3d-test/Makefile
@@ -0,0 +1,6 @@
+SRC := ../util.c plane.c
+OUT := plane
+LIBS := -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
+
+make all:
+ gcc $(SRC) -o $(OUT) $(LIBS)