You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qmk_firmware/Makefile.common

19 lines
245 B

SRC += keyboard.c \
command.c \
layer.c \
timer.c \
print.c \
util.c
# Option modules
ifdef MOUSEKEY_ENABLE
SRC += mousekey.c
endif
ifdef PS2_MOUSE_ENABLE
SRC += ps2.c \
ps2_mouse.c
endif
include $(COMMON_DIR)/Makefile.rules