Browse Source

Make the joystick project compilable

DricomDragon 4 years ago
parent
commit
cf08c33d5a

+ 1 - 0
sdl1/joystickVisual/.gitignore

@@ -0,0 +1 @@
+bin/

+ 1 - 1
sdl1/joystickVisual/Point.h

@@ -5,7 +5,7 @@
 ///Objet: débuggage, mise en fonction
 
 #include <iostream>
-#include <SDL.h>
+#include <SDL/SDL.h>
 #include <cmath>
 
 /*

+ 1 - 1
sdl1/joystickVisual/main.cpp

@@ -1,5 +1,5 @@
 #include <iostream>
-#include <SDL.h>
+#include <SDL/SDL.h>
 
 #include "Point.h"
 

+ 25 - 0
sdl1/joystickVisual/makefile

@@ -0,0 +1,25 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=-lSDL
+INC=
+LIB=
+
+EXEC=SdlApp
+SRC=$(shell find . -name '*.cpp')
+OBJ=$(SRC:.cpp=.o)
+
+$(EXEC): $(OBJ)
+	@mkdir -p bin
+	$(CXX) -o bin/$@ $^ $(LDFLAGS) $(LIB)
+
+%.o : %.cpp
+	$(CXX) -o $@ -c $< $(CXXFLAGS) $(INC)
+
+clean:
+	rm -rf $(OBJ)
+
+distclean: clean
+	rm -rf ./bin
+
+exec: $(EXEC)
+	./bin/$(EXEC)