48 lines
988 B
Makefile
48 lines
988 B
Makefile
color = F44336
|
|
photo = true
|
|
extra = true
|
|
build = $(CURDIR)/build
|
|
src = $(CURDIR)/tex
|
|
target = $(src)/main.tex
|
|
output = $(build)/main.pdf
|
|
outputen = $(build)/voronind_en.pdf
|
|
outputru = $(build)/voronind_ru.pdf
|
|
|
|
export RESUME_COLOR := $(color)
|
|
export RESUME_PHOTO := $(photo)
|
|
export RESUME_EXTRA := $(extra)
|
|
|
|
.PHONY: all
|
|
all: clean icon en ru open
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@rm -rf $(build)
|
|
|
|
.PHONY: icon
|
|
icon:
|
|
@mkdir -p $(build)/image;\
|
|
cd image/icon;\
|
|
for file in *; do convert "$$file" -fill "#$$RESUME_COLOR" -colorize 100 $(build)/image/"$$file" &> /dev/null || cp "$$file" $(build)/image/; done
|
|
|
|
.PHONY: en
|
|
en: icon
|
|
@mkdir -p $(build);\
|
|
cd $(src);\
|
|
export RESUME_LANG=en;\
|
|
lualatex --output-dir=$(build) $(target);\
|
|
mv $(output) $(outputen)
|
|
|
|
.PHONY: ru
|
|
ru: icon
|
|
@mkdir -p $(build);\
|
|
cd $(src);\
|
|
export RESUME_LANG=ru;\
|
|
lualatex --output-dir=$(build) $(target);\
|
|
mv $(output) $(outputru)
|
|
|
|
.PHONY: open
|
|
open:
|
|
@xdg-open $(outputen);\
|
|
xdg-open $(outputru)
|