qmk_firmware/Makefile.common

19 lines
245 B
Makefile
Raw Normal View History

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