Add pcoves's userspace (#9354)
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Pablo COVES <pablo.coves@anatoscope.com>
This commit is contained in:
parent
071e0c2029
commit
facca23315
13 changed files with 375 additions and 0 deletions
30
users/pcoves/rules.mk
Normal file
30
users/pcoves/rules.mk
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
SRC += pcoves.c
|
||||
|
||||
RAINBOW_UNICORN_ENABLE ?= no
|
||||
ifneq ($(strip $(RAINBOW_UNICORN_ENABLE)), no)
|
||||
SRC += rainbowUnicorn.c
|
||||
OPT_DEFS += -DRAINBOW_UNICORN_ENABLE
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
|
||||
SRC += tapDance.c
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(COMBO_ENABLE)), yes)
|
||||
SRC += combo.c
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(UNICODE_ENABLE)), yes)
|
||||
SRC += unicode.c
|
||||
OPT_DEFS += -DUNICODE_ENABLE
|
||||
endif
|
||||
|
||||
ifneq ($(strip $(NO_SECRET)), yes)
|
||||
ifneq ("$(wildcard $(USER_PATH)/secret.c)","")
|
||||
SRC += secret.c
|
||||
else
|
||||
OPT_DEFS += -DNO_SECRET
|
||||
endif
|
||||
else
|
||||
OPT_DEFS += -DNO_SECRET
|
||||
endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue