From: outfrost Date: Sat, 2 May 2020 21:47:36 +0000 (+0200) Subject: Remove redundant library paths X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=bdd49b5cfebec61ad132e72f5d1ef78e7916c2b7;p=shadowclad.git Remove redundant library paths --- diff --git a/Makefile b/Makefile index 2d28f78..af858fd 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ SRCDIR ?= src CPPFLAGS ::= -iquotesrc/ $(CPPFLAGS) CFLAGS ::= -g -std=c99 -Wall -Wextra -Wpedantic -Werror $(CFLAGS) LDFLAGS ::= $(LDFLAGS) -LDLIBS ::= -L/usr/local/lib -lGL -lGLEW -lglut -lassimp $(LDLIBS) +LDLIBS ::= -lGL -lGLEW -lglut -lassimp $(LDLIBS) # ###### # Paths @@ -69,7 +69,7 @@ init: # Build and run run: $(binary) @echo - @LD_LIBRARY_PATH=/usr/local/lib $(binary) + @$(binary) .PHONY: run # Build executable