summaryrefslogtreecommitdiffhomepage
path: root/src/Makefile
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2017-12-09 19:05:42 +0100
committerraysan5 <[email protected]>2017-12-09 19:05:42 +0100
commit5ae2c0d15b349ce59425c319165505bda8298a6c (patch)
tree6e7337454f5b7a72df074799553478b4cb3af7d6 /src/Makefile
parent3b5a26099e0cde67084481eb6048058578b30a0c (diff)
downloadraylib-5ae2c0d15b349ce59425c319165505bda8298a6c.tar.gz
raylib-5ae2c0d15b349ce59425c319165505bda8298a6c.zip
Added Wayland support
Updated to latest GLFW library and working on Wayland support, still looking how to implement it on raylib because it just exposes PLATFORM_DESKTOP and defaults to X11 windowing system on Linux...
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 83aec5dd..e3bb91cc 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -353,7 +353,7 @@ else
ifeq ($(PLATFORM_OS),LINUX)
# Compile raylib to shared library version for GNU/Linux.
# WARNING: you should type "make clean" before doing this target
- $(CC) -shared -o $(RAYLIB_RELEASE_PATH)/libraylib.so $(OBJS) -lGL -lm -lpthread -ldl
+ $(CC) -shared -o $(RAYLIB_RELEASE_PATH)/libraylib.so $(OBJS) -lGL -lm -lpthread -ldl -lrt
@echo "raylib shared library generated (libraylib.so)!"
endif
ifeq ($(PLATFORM_OS),OSX)