[Change] OMEGA_THEME_* to THEME_*

This commit is contained in:
Quentin
2020-06-23 17:35:39 +02:00
parent ea75f8ac26
commit 1f3ad54c05
4 changed files with 12 additions and 12 deletions

View File

@@ -1,11 +1,11 @@
SFLAGS += -Iescher/include
ifeq ($(OMEGA_THEME_REPO),local)
ifeq ($(THEME_REPO),local)
$(eval $(call rule_for, \
THEME, \
escher/palette.h, \
$(addprefix themes/themes/local/, $(addsuffix .json, $(OMEGA_THEME_NAME))), \
$$(PYTHON) themes/themes_manager.py $(OMEGA_THEME_REPO) $(OMEGA_THEME_NAME) $$@ $(BUILD_DIR)/, \
$(addprefix themes/themes/local/, $(addsuffix .json, $(THEME_NAME))), \
$$(PYTHON) themes/themes_manager.py $(THEME_REPO) $(THEME_NAME) $$@ $(BUILD_DIR)/, \
global \
))
else
@@ -13,7 +13,7 @@ $(eval $(call rule_for, \
THEME, \
escher/palette.h, \
themes/themes/git/.empty-folder, \
$$(PYTHON) themes/themes_manager.py $(OMEGA_THEME_REPO) $(OMEGA_THEME_NAME) $$@ $(BUILD_DIR)/, \
$$(PYTHON) themes/themes_manager.py $(THEME_REPO) $(THEME_NAME) $$@ $(BUILD_DIR)/, \
global \
))
endif