summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2022-11-04 18:54:37 -0400
committerrealtradam <[email protected]>2022-11-04 18:54:37 -0400
commit4c5b6f580133f9e9c02b5cb2243b43ff15b20304 (patch)
tree14107b0c6dbd438e731b5ac757199bc2b1807fb4 /Makefile
parent6936cd871bd99f702e6180b169785b814cfa00f3 (diff)
downloadorbital_game-4c5b6f580133f9e9c02b5cb2243b43ff15b20304.tar.gz
orbital_game-4c5b6f580133f9e9c02b5cb2243b43ff15b20304.zip
remove uneeded early linking
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b17054b..f626617 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@ DEPS := $(OBJS:.o=.d)
INC_DIRS := $(shell find $(SRC_DIRS) -type d) $(RAYLIB_SRC)
# Add a prefix to INC_DIRS. So moduleA would become -ImoduleA. GCC understands this -I flag
-INC_FLAGS := $(addprefix -I,$(INC_DIRS)) $(RAYLIB_LIB) $(RAYLIB_FLAGS)
+INC_FLAGS := $(addprefix -I,$(INC_DIRS))
# The -MMD and -MP flags together generate Makefiles for us!
# These files will have .d instead of .o as the output.