Explorar el Código

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

Streetwalrus Einstein hace 10 años
padre
commit
1c33ea9892
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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"