Răsfoiți Sursa

Merge pull request #175 from timothyqiu/tabfixes

Fixes misuse of spaces in GLFW demo Makefiles
Micha Mettke 9 ani în urmă
părinte
comite
de7f8863b2
2 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 1 1
      demo/glfw_opengl2/Makefile
  2. 1 1
      demo/glfw_opengl3/Makefile

+ 1 - 1
demo/glfw_opengl2/Makefile

@@ -15,7 +15,7 @@ else
 	ifeq ($(UNAME_S),Darwin)
 	ifeq ($(UNAME_S),Darwin)
 		LIBS = -lglfw3 -framework OpenGL -lm
 		LIBS = -lglfw3 -framework OpenGL -lm
 	else
 	else
-    LIBS = -lglfw -lGL -lm -lGLU
+		LIBS = -lglfw -lGL -lm -lGLU
 	endif
 	endif
 endif
 endif
 
 

+ 1 - 1
demo/glfw_opengl3/Makefile

@@ -15,7 +15,7 @@ else
 	ifeq ($(UNAME_S),Darwin)
 	ifeq ($(UNAME_S),Darwin)
 		LIBS = -lglfw3 -framework OpenGL -lm -lGLEW
 		LIBS = -lglfw3 -framework OpenGL -lm -lGLEW
 	else
 	else
-    LIBS = -lglfw -lGL -lm -lGLU -lGLEW
+		LIBS = -lglfw -lGL -lm -lGLU -lGLEW
 	endif
 	endif
 endif
 endif