mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-03-29 05:31:36 +00:00
18 lines
232 B
Makefile
18 lines
232 B
Makefile
SRC += keyboard.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
|