瀏覽代碼

Fix newline in make include since it's used for scripting

Streetwalrus Einstein 10 年之前
父節點
當前提交
1c33ea9892
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      rules.mk

+ 1 - 1
rules.mk

@@ -35,7 +35,7 @@ format:
 	@clang-format -i -style=file $(SRCS_C) $(SRCS_CPP) $(wildcard $(addsuffix /*.h,$(INCLUDE)))
 
 include:
-	@echo $(addprefix -I ,$(INCLUDE))
+	@echo -n $(addprefix -I ,$(INCLUDE))
 
 run: all
 	@echo "Sending $(EXE) to calculator"