From d9d74c7f3634deb9098e476d38688c9ccd8fae38 Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Thu, 18 Feb 2016 19:25:04 +0100 Subject: [PATCH] =?UTF-8?q?Tamb=C3=A9=20compila=20en=20Linux?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .hgignore | 1 + makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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)