This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
tmk_keyboard/Makefile.common
2011-02-22 03:09:02 +09:00

18 lines
245 B
Text

SRC += keyboard.c \
command.c \
layer.c \
timer.c \
print.c \
util.c
# Option modules
ifdef MOUSEKEY_ENABLE
SRC += mousekey.c
endif
ifdef PS2_MOUSE_ENABLE
SRC += ps2.c \
ps2_mouse.c
endif
include $(COMMON_DIR)/Makefile.rules