You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
898 B
Makefile

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Данный файл будет добавлен к рабочему Makefile,
# если операционная система определится как Windows
### Пользовательские настройки
FONTFAMILY ?= 1 # Используются шрифты семейства MS
### Пользовательские правила
INDENT_SETTINGS ?= indent.yaml
ifeq ($(INDENT_FILES),)
INDENT_FILES += $(wildcard Dissertation/part*.tex)
INDENT_FILES += Synopsis/content.tex
INDENT_FILES += Presentation/content.tex
endif
##! форматирование файлов *.tex
indent:
@$(foreach file, $(INDENT_FILES),\
latexindent -l=$(INDENT_SETTINGS) -s -w $(file) &&)\
echo "done"
##! форматирование файлов *.tex с разбиением длинных строк
indent-wrap: INDENT_SETTINGS+=-m
indent-wrap: indent
.PHONY: indent indent-wrap