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