forked from mirrors/qmk_firmware
2aeacf9db7
- Remove disused dz60/jdelkins_ss keymap - Manage configured features for firmware size - Improve build configuration for the secrets feature - Various keymap tweaks - Clean up formatting in various places
15 lines
326 B
Makefile
15 lines
326 B
Makefile
SRC += jdelkins.c
|
|
|
|
ifneq ($(strip $(NO_SECRETS)),)
|
|
OPT_DEFS += -DNO_SECRETS
|
|
endif
|
|
|
|
ifeq ($(shell test -f users/jdelkins/secrets.h.gpg && echo yes || echo no),yes)
|
|
users/jdelkins/jdelkins.c: users/jdelkins/secrets.h
|
|
touch $@
|
|
|
|
users/jdelkins/secrets.h: users/jdelkins/secrets.h.gpg
|
|
gpg -d $< >$@
|
|
endif
|
|
|
|
BOOTMAGIC_ENABLE = no
|