فهرست منبع

:beetle: Fix syntax error

Make does not like spaces. It want real tabs.
DricomDragon 1 سال پیش
والد
کامیت
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: