Merge pull request #1 from wedesoft/master

sdl2-config invocation without full path
This commit is contained in:
Robert Kooima 2017-10-23 12:48:09 -05:00 committed by GitHub
commit 48a6916526
3 changed files with 5 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.o

2
etc/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
example
*.o

View File

@ -1,6 +1,6 @@
OPTS= $(shell /usr/local/bin/sdl2-config --cflags) -I. -I.. -Wall
LIBS= $(shell /usr/local/bin/sdl2-config --libs)
OPTS= $(shell sdl2-config --cflags) -I. -I.. -Wall
LIBS= $(shell sdl2-config --libs)
ifeq ($(shell uname), Linux)
LIBS += -lGL -lGLEW