@@ -0,0 +1,40 @@
+# Created by https://www.toptal.com/developers/gitignore/api/c++
+# Edit at https://www.toptal.com/developers/gitignore?templates=c++
+
+### C++ ###
+# Prerequisites
+*.d
+# Compiled Object files
+*.slo
+*.lo
+*.o
+*.obj
+# Precompiled Headers
+*.gch
+*.pch
+# Compiled Dynamic libraries
+*.so
+*.dylib
+*.dll
+# Fortran module files
+*.mod
+*.smod
+# Compiled Static libraries
+*.lai
+*.la
+*.a
+*.lib
+# Executables
+*.exe
+*.out
+*.app
+# End of https://www.toptal.com/developers/gitignore/api/c++
+bin/
@@ -0,0 +1,26 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=-lSDL -lSDL_gfx
+INC=
+LIB=
+EXEC=HyperGunner
+SRC=$(shell find . -name '*.cpp')
+OBJ=$(SRC:.cpp=.o)
+$(EXEC): $(OBJ)
+ @mkdir -p bin
+ $(CXX) -o bin/$@ $^ $(LDFLAGS) $(LIB)
+#TODO add .h in case of global variables
+%.o : %.cpp
+ $(CXX) -o $@ -c $< $(CXXFLAGS) $(INC)
+clean:
+ rm -rf $(OBJ)
+distclean: clean
+ rm -rf $(EXEC)
+exec: $(EXEC)
+ ./bin/$(EXEC)
@@ -6,7 +6,7 @@
// Include
#include <iostream>
-#include <SDL.h>
+#include <SDL/SDL.h>
// Classe
@@ -2,7 +2,7 @@
#define AFFICHABLE_H
#include "../Structures/Vecteur.h"
class Affichable
@@ -41,7 +41,7 @@ extern "C" {
#define M_PI 3.141592654
#endif
-#include "SDL.h"
/* ---- Defines */
@@ -4,7 +4,7 @@
#include <string>
#include <map>
class SpriteLoader
{