diff --git a/.hgignore b/.hgignore index 95e3abf..b8f24d1 100644 --- a/.hgignore +++ b/.hgignore @@ -1,5 +1,6 @@ syntax: glob +aee recursos/* bin/* obj/* diff --git a/makefile b/makefile index a0a85ec..f9e1ae0 100755 --- a/makefile +++ b/makefile @@ -1,6 +1,6 @@ TARGET=aee all: - g++ *.cpp -w -lSDL2 -lGL -lSDL2_image -lSDL2_mixer -o $(TARGET) + g++ -I/usr/include/SDL2 *.cpp -w -lSDL2 -lGL -lSDL2_image -lSDL2_mixer -o $(TARGET) clean: rm -rf ./$(TARGET)