소스 검색

:beetle: Fix syntax error

Make does not like spaces. It want real tabs.
DricomDragon 2 년 전
부모
커밋
aea74ba102
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      makefile

+ 2 - 2
makefile

@@ -9,10 +9,10 @@ PANDOC_GEN := pandoc --standalone --wrap=none --template src/templates/main.html
 
 .PHONY: build
 build: $(GEN_FILES)
-    $(info HTML generated)
+	$(info HTML generated)
 
 %.gen.html: %.src.html %.src.md
-    $(PANDOC_GEN) --output $@ $<
+	$(PANDOC_GEN) --output $@ $<
 
 .PHONY: clean
 clean: