aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2017-05-10 19:37:48 +0200
committerRay <raysan5@gmail.com>2017-05-10 19:37:48 +0200
commit93e2fd8ea1b62cedb74f5d30c005676ae78cc004 (patch)
tree7ff7288b6935a00ca2447e1d2bbc32ce4e32da91 /src/Makefile
parent16842233c92cec78bb3771c711269b43be33c241 (diff)
downloadraylib-93e2fd8ea1b62cedb74f5d30c005676ae78cc004.tar.gz
raylib-93e2fd8ea1b62cedb74f5d30c005676ae78cc004.zip
Some tweaks
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index f2e09988..bf19018b 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -325,12 +325,12 @@ else
endif
ifeq ($(PLATFORM),PLATFORM_ANDROID)
$(CC) -shared -o $(OUTPUT_PATH)/libraylib.so $(OBJS)
- @echo "raylib shared library (libraylib.so) generated!"
+ @echo "raylib shared library generated (libraylib.so)!"
endif
else
# compile raylib static library.
$(AR) rcs $(OUTPUT_PATH)/libraylib.a $(OBJS)
- @echo "libraylib.a generated (static library)!"
+ @echo "raylib static library generated (libraylib.a)!"
ifeq ($(SHARED_OPENAL),NO)
@echo "expected OpenAL Soft static library linking"
else