From 9f237cda52c87f11ff1333f7c3cdf5b779c08faa Mon Sep 17 00:00:00 2001 From: Jan Wedekind Date: Mon, 9 Oct 2017 11:01:11 +0100 Subject: [PATCH 1/2] Do not specify sdl2-config location --- etc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/Makefile b/etc/Makefile index 499c69e..b581b93 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -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 From b86f6945dbe55271ba11cb912d6328c8b0c7e7a1 Mon Sep 17 00:00:00 2001 From: Jan Wedekind Date: Mon, 9 Oct 2017 11:01:59 +0100 Subject: [PATCH 2/2] Added ignore files --- .gitignore | 1 + etc/.gitignore | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 .gitignore create mode 100644 etc/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5761abc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.o diff --git a/etc/.gitignore b/etc/.gitignore new file mode 100644 index 0000000..242721a --- /dev/null +++ b/etc/.gitignore @@ -0,0 +1,2 @@ +example +*.o