qmk-firmware/Makefile.common

19 lines
245 B
Makefile
Raw Normal View History

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