瀏覽代碼

Make project compilable under Ubuntu

- Add makefile
- Fix includes
DricomDragon 4 年之前
父節點
當前提交
0a195bc5c3
共有 9 個文件被更改,包括 36 次插入10 次删除
  1. 1 1
      Collisions.h
  2. 1 1
      Liner.h
  3. 2 2
      Sounderer.h
  4. 1 1
      SpriteLoader.h
  5. 2 2
      TextRender.h
  6. 1 1
      jeu.h
  7. 1 1
      main.cpp
  8. 26 0
      makefile
  9. 1 1
      traitement.h

+ 1 - 1
Collisions.h

@@ -3,7 +3,7 @@
 
 //Includes
 #include <iostream>
-#include <SDL.h>
+#include <SDL/SDL.h>
 #include "traitement.h"
 
 //Orientation

+ 1 - 1
Liner.h

@@ -3,7 +3,7 @@
 
 #include <iostream>
 #include <deque>
-#include <SDL.h>
+#include <SDL/SDL.h>
 #include "Collisions.h"
 #include "traitement.h"
 #include "Power.h"

+ 2 - 2
Sounderer.h

@@ -4,8 +4,8 @@
 #include <iostream>
 #include <string>
 #include <map>
-#include <SDL.h>
-#include <SDL_mixer.h>
+#include <SDL/SDL.h>
+#include <SDL/SDL_mixer.h>
 
 #define EXT_WAV 0
 #define EXT_OGG 1

+ 1 - 1
SpriteLoader.h

@@ -4,7 +4,7 @@
 #include <iostream>
 #include <string>
 #include <map>
-#include <SDL.h>
+#include <SDL/SDL.h>
 
 class SpriteLoader
 {

+ 2 - 2
TextRender.h

@@ -5,8 +5,8 @@
 #include <map>
 #include <string>
 
-#include <SDL.h>
-#include <SDL_ttf.h>
+#include <SDL/SDL.h>
+#include <SDL/SDL_ttf.h>
 
 class LiteText;
 

+ 1 - 1
jeu.h

@@ -1,7 +1,7 @@
 #ifndef JEU_H_INCLUDED
 #define JEU_H_INCLUDED
 
-#include <SDL.h>
+#include <SDL/SDL.h>
 #include "Liner.h"
 #include "Collisions.h"
 #include "Power.h"

+ 1 - 1
main.cpp

@@ -1,5 +1,5 @@
 #include <iostream>
-#include <SDL.h>
+#include <SDL/SDL.h>
 
 #include <cstdlib>
 #include <ctime>

+ 26 - 0
makefile

@@ -0,0 +1,26 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=-lSDL -lSDL_mixer -lSDL_ttf
+INC=
+LIB=
+
+EXEC=mightyliners
+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)

+ 1 - 1
traitement.h

@@ -2,7 +2,7 @@
 #define RETOURNER_H_INCLUDED
 
 #include <iostream>
-#include <SDL.h>
+#include <SDL/SDL.h>
 
 SDL_Surface* retournement(SDL_Surface* originale, int nbQuarts);
 /** retournement() \brief Permet de créer une nouvelle image pivotée.