Browse Source

Merge pull request #175 from timothyqiu/tabfixes

Fixes misuse of spaces in GLFW demo Makefiles
Micha Mettke 9 năm trước cách đây
mục cha
commit
de7f8863b2
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  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)
 		LIBS = -lglfw3 -framework OpenGL -lm
 	else
-    LIBS = -lglfw -lGL -lm -lGLU
+		LIBS = -lglfw -lGL -lm -lGLU
 	endif
 endif
 

+ 1 - 1
demo/glfw_opengl3/Makefile

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