blob: 42e12b058e5e48627f3b6ded18226e296ca0cd17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Ref: https://github.com/theova/base16-qutebrowser
.PHONY: all clean update build
BUILD=pybase16
REPO=$(shell pwd)
TEMPLATE=$(shell basename ${REPO})
THEME_DIR=build_schemes
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}/*/
|