-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: create Vial-specific makefile
Isolating Vial build rules and recipes makes it clearer where and why the codebase diverges and prevents unintentional modifications after upstream changes.
- Loading branch information
Showing
2 changed files
with
37 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright 2023 Ilya Zhuravlev | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
QMK_SETTINGS ?= yes | ||
TAP_DANCE_ENABLE ?= yes | ||
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) | ||
OPT_DEFS += -DTAPPING_TERM_PER_KEY | ||
endif | ||
COMBO_ENABLE ?= yes | ||
KEY_OVERRIDE_ENABLE ?= yes | ||
SRC += $(QUANTUM_DIR)/vial.c | ||
OPT_DEFS += -DVIAL_ENABLE -DNO_DEBUG -DSERIAL_NUMBER=\"vial:f64c2b3c\" | ||
|
||
ifeq ($(strip $(VIAL_INSECURE)), yes) | ||
OPT_DEFS += -DVIAL_INSECURE | ||
endif | ||
|
||
ifeq ($(strip $(VIALRGB_ENABLE)), yes) | ||
SRC += $(QUANTUM_DIR)/vialrgb.c | ||
OPT_DEFS += -DVIALRGB_ENABLE | ||
endif | ||
|
||
ifeq ($(strip $(QMK_SETTINGS)), yes) | ||
AUTO_SHIFT_ENABLE := yes | ||
SRC += $(QUANTUM_DIR)/qmk_settings.c | ||
OPT_DEFS += -DQMK_SETTINGS \ | ||
-DAUTO_SHIFT_NO_SETUP -DAUTO_SHIFT_REPEAT_PER_KEY -DAUTO_SHIFT_NO_AUTO_REPEAT_PER_KEY \ | ||
-DPERMISSIVE_HOLD_PER_KEY -DHOLD_ON_OTHER_KEY_PRESS_PER_KEY -DTAPPING_FORCE_HOLD_PER_KEY -DRETRO_TAPPING_PER_KEY \ | ||
-DCOMBO_TERM_PER_COMBO | ||
endif | ||
|
||
# Generate Vial layout definition header from JSON | ||
$(QUANTUM_DIR)/vial.c: $(INTERMEDIATE_OUTPUT)/src/vial_generated_keyboard_definition.h | ||
|
||
$(INTERMEDIATE_OUTPUT)/src/vial_generated_keyboard_definition.h: $(KEYMAP_PATH)/vial.json | ||
python3 util/vial_generate_definition.py $(KEYMAP_PATH)/vial.json $(INTERMEDIATE_OUTPUT)/src/vial_generated_keyboard_definition.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters