浏览代码

Fixes misuse of spaces in GLFW demo Makefiles

Timothy Qiu 9 年之前
父节点
当前提交
440f2f7cbc
共有 2 个文件被更改,包括 2 次插入2 次删除
  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