qmk_firmware/Makefile.common

19 lines
245 B
Makefile
Raw Normal View History

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