It doesn't want to make at all, gives me this error:
Code: Select all
$ make
fatal: Not a git repository (or any parent up to mount point /home)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
C++ backends/platform/sdl/sdl.o
In file included from ./backends/platform/sdl/sdl.h:26:0,
from backends/platform/sdl/sdl.cpp:31:
./backends/platform/sdl/sdl-sys.h:151:17: fatal error: SDL.h: No such file or directory
#include <SDL.h>
^
compilation terminated.
So I assumed, since the actual file is name without any capital letters, I'd rename that file so that it matches what the sdl.cpp file expects, but I now get this:
Code: Select all
$ make
fatal: Not a git repository (or any parent up to mount point /home)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
C++ backends/platform/sdl/sdl.o
backends/platform/sdl/sdl.cpp:31:39: fatal error: backends/platform/sdl/sdl.h: No such file or directory
#include "backends/platform/sdl/sdl.h"
^
compilation terminated.
Makefile.common:103: recipe for target 'backends/platform/sdl/sdl.o' failed
make: *** [backends/platform/sdl/sdl.o] Error 1
Does anyone know what I can do to fix this issue?
Thanks in advance!