tmk_keyboard/Makefile.common

19 lines
245 B
Makefile
Raw Normal View History

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