Age | Commit message (Expand) | Author |
---|---|---|
2022-07-04 | Merge remote-tracking branch 'upstream/main'HEADmaster | Michaël Ball |
2022-01-05 | Define matchup's MatchWord highlight | Grégoi# Ref: https://github.com/theova/base16-qutebrowser
.PHONY: all clean update build
BUILD=pybase16
REPO=$(shell pwd)
TEMPLATE=$(shell basename ${REPO})
THEME_DIR=colors
TEMPLATE_DIR=templates
OUTPUT=output
all: update build
update:
$(BUILD) update
build:
$(BUILD) build -t ${REPO} -o ${OUTPUT}
rm -rf ${THEME_DIR}
mv ${OUTPUT}/${TEMPLATE}/${THEME_DIR}/ ${THEME_DIR}/
clean:
rm -rf ${OUTPUT} ${TEMPLATE_DIR}/*/
|