També compila en Linux

This commit is contained in:
2016-02-18 19:25:04 +01:00
parent ea9d51f78a
commit d9d74c7f36
2 changed files with 2 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
syntax: glob syntax: glob
aee
recursos/* recursos/*
bin/* bin/*
obj/* obj/*

View File

@@ -1,6 +1,6 @@
TARGET=aee TARGET=aee
all: 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: clean:
rm -rf ./$(TARGET) rm -rf ./$(TARGET)