Remove redundant library paths

master
outfrost 2020-05-02 23:47:36 +02:00
parent 66cbcafafd
commit bdd49b5cfe
1 changed files with 2 additions and 2 deletions

View File

@ -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