1
0
Fork 0

Added Bulegiga iWRAP support into HHKB.(Bluetooth)

This commit is contained in:
tmk 2011-09-17 22:39:50 +09:00
parent b703de7b29
commit e67c988824
90 changed files with 3154 additions and 541 deletions

38
common.mk Normal file
View file

@ -0,0 +1,38 @@
SRC += host.c \
keyboard.c \
command.c \
layer.c \
timer.c \
print.c \
util.c
# Option modules
ifdef MOUSEKEY_ENABLE
SRC += mousekey.c
OPT_DEFS += -DMOUSEKEY_ENABLE
endif
ifdef PS2_MOUSE_ENABLE
SRC += ps2.c \
ps2_mouse.c
OPT_DEFS += -DPS2_MOUSE_ENABLE
endif
ifdef EXTRAKEY_ENABLE
OPT_DEFS += -DEXTRAKEY_ENABLE
endif
ifdef NKRO_ENABLE
OPT_DEFS += -DNKRO_ENABLE
endif
ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
OPT_DEFS += -DMOUSE_ENABLE
endif
# Search Path
VPATH += $(COMMON_DIR)
include $(COMMON_DIR)/rules.mk