From bdd49b5cfebec61ad132e72f5d1ef78e7916c2b7 Mon Sep 17 00:00:00 2001 From: outfrost Date: Sat, 2 May 2020 23:47:36 +0200 Subject: [PATCH] Remove redundant library paths --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.44.0