monolisa-nerdfont-patch/Makefile

45 lines
1.0 KiB
Makefile
Raw Normal View History

2022-12-13 00:27:51 -06:00
-include .env
2022-08-12 13:37:15 -05:00
ARGS ?= -c
2022-12-07 16:12:24 -06:00
NF_SRC := $(shell ./bin/get-font-files src)
2022-12-13 00:12:00 -06:00
FONT_FLAGS := $(shell ./bin/get-font-files MonoLisa 'otf,ttf,woff,woff2')
2022-08-12 13:37:15 -05:00
2022-12-07 16:12:24 -06:00
## patch | apply nerd fonts patch
patch: ./bin/font-patcher
@./bin/patch-monolisa \
2022-12-13 00:12:00 -06:00
$(FONT_FLAGS) \
2022-12-07 16:12:24 -06:00
$(ARGS)
2022-12-01 14:16:40 -06:00
2022-09-05 18:37:47 -05:00
## update-fonts | move fonts and update fc-cache
2022-08-12 13:37:15 -05:00
.PHONY: update-fonts
update-fonts:
2022-09-05 18:37:47 -05:00
$(call msg,Adding Fonts To System)
2022-08-12 13:37:15 -05:00
@./bin/update-fonts
@fc-cache -f -v
2022-09-05 18:37:47 -05:00
## check | check fc-list for MonoLisa
2022-08-12 13:37:15 -05:00
.PHONY: check
check:
2022-10-13 10:41:38 -05:00
$(call msg,Checking System for Fonts)
2022-08-12 13:37:15 -05:00
@fc-list | grep "MonoLisa"
2022-09-05 18:37:47 -05:00
## update-src | update nerd fonts source
2022-08-12 13:37:15 -05:00
.PHONY: update-src
update-src:
2022-09-05 18:37:47 -05:00
$(call msg,Updating Source Files)
2022-08-12 13:37:15 -05:00
@./bin/update-src
2022-09-05 18:37:47 -05:00
## lint | check shell scripts
2022-08-12 13:37:15 -05:00
.PHONY: lint
lint:
@shfmt -w -s $(shell shfmt -f bin/)
2022-09-05 18:37:47 -05:00
## clean | remove patched fonts
2022-08-12 13:37:15 -05:00
.PHONY: clean
clean:
2022-12-28 12:35:02 -06:00
@rm -rf patched/*
2022-09-05 18:37:47 -05:00
2022-12-07 16:12:24 -06:00
msg = $(call tprint,{a.bold}==>{a.end} {a.b_magenta}$(1){a.end} {a.bold}<=={a.end})
2022-10-13 10:41:38 -05:00
USAGE = {a.b_green}Update MonoLisa with Nerd Fonts! {a.end}\n\n{a.header}usage{a.end}:\n make <recipe>\n
2022-09-05 18:37:47 -05:00
-include .task.mk