summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorashn <[email protected]>2023-07-26 11:50:07 -0400
committerGitHub <[email protected]>2023-07-26 17:50:07 +0200
commitac6f889dfcaf4c195c13abed09522ecebd03b0f9 (patch)
tree3a1b0b2b8326abf9c5087b48a7831b287cf6560e /src
parent298f93ef50cbf976ed497714e7cf5fbc0c1193e4 (diff)
downloadraylib-ac6f889dfcaf4c195c13abed09522ecebd03b0f9.tar.gz
raylib-ac6f889dfcaf4c195c13abed09522ecebd03b0f9.zip
Fix misleading indentation in src/Makefile (#3202)
Diffstat (limited to 'src')
-rw-r--r--src/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Makefile b/src/Makefile
index fc4c5b0c..4f742a25 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -801,19 +801,19 @@ ifeq ($(ROOT),root)
# and $(RAYLIB_H_INSTALL_PATH). Please confirm each item.
ifeq ($(PLATFORM_OS),LINUX)
ifeq ($(RAYLIB_LIBTYPE),SHARED)
- rm --force --interactive --verbose $(RAYLIB_INSTALL_PATH)/libraylib.so
- rm --force --interactive --verbose $(RAYLIB_INSTALL_PATH)/libraylib.so.$(RAYLIB_API_VERSION)
- rm --force --interactive --verbose $(RAYLIB_INSTALL_PATH)/libraylib.so.$(RAYLIB_VERSION)
- # Uncomment to clean up the runtime linker cache. See install target.
- ldconfig
+ rm --force --interactive --verbose $(RAYLIB_INSTALL_PATH)/libraylib.so
+ rm --force --interactive --verbose $(RAYLIB_INSTALL_PATH)/libraylib.so.$(RAYLIB_API_VERSION)
+ rm --force --interactive --verbose $(RAYLIB_INSTALL_PATH)/libraylib.so.$(RAYLIB_VERSION)
+ # Uncomment to clean up the runtime linker cache. See install target.
+ ldconfig
else
- rm --force --interactive --verbose $(RAYLIB_INSTALL_PATH)/libraylib.a
+ rm --force --interactive --verbose $(RAYLIB_INSTALL_PATH)/libraylib.a
endif
rm --force --interactive --verbose $(RAYLIB_H_INSTALL_PATH)/raylib.h
rm --force --interactive --verbose $(RAYLIB_H_INSTALL_PATH)/raymath.h
rm --force --interactive --verbose $(RAYLIB_H_INSTALL_PATH)/rlgl.h
@echo "raylib development files removed!"
- else
+ else
@echo "This function currently works on GNU/Linux systems. Add yours today (^;"
endif
else