tmk_keyboard/Makefile.common

19 lines
245 B
Makefile
Raw Normal View History

2011-02-08 16:03:58 +01:00
SRC += keyboard.c \
2011-02-10 07:51:30 +01:00
command.c \
2010-10-29 08:17:18 +02:00
layer.c \
timer.c \
2011-02-08 16:03:58 +01:00
print.c \
2010-10-27 13:51:45 +02:00
util.c
2011-01-04 16:04:25 +01:00
# Option modules
ifdef MOUSEKEY_ENABLE
SRC += mousekey.c
endif
2011-02-08 16:03:58 +01:00
ifdef PS2_MOUSE_ENABLE
SRC += ps2.c \
ps2_mouse.c
endif
2011-02-08 16:03:58 +01:00
include $(COMMON_DIR)/Makefile.rules