diff options
author | mRnea <akannemre@gmail.com> | 2024-12-24 15:08:39 +0300 |
---|---|---|
committer | mRnea <akannemre@gmail.com> | 2024-12-24 15:08:39 +0300 |
commit | c42b641213098288477e132a11ea9797493e4d12 (patch) | |
tree | e1e167a5c33331e53a5a36b8d76750e6f5bb1693 /3d-test/Makefile | |
parent | 6dafffb522d9f2c9ae4f098a2e7d20f35218b7f6 (diff) |
testing raylib 3d plane
Diffstat (limited to '3d-test/Makefile')
-rw-r--r-- | 3d-test/Makefile | 6 |
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) |