TARGET=aee
all:
	g++ *.cpp -w -lSDL2 -lGL -lSDL2_image -lSDL2_mixer -o $(TARGET)
	
clean:
	rm -rf ./$(TARGET)

