Keyboard firmwares for Atmel AVR and Cortex-M
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.

Makefile 565B

123456789101112131415161718192021222324252627282930313233
  1. PROJECT = mbed_onekey
  2. TMK_DIR = ../../tmk_core
  3. MBED_DIR = $(TMK_DIR)/mbed-sdk
  4. #VPATH += $(MBED_DIR):$(TMK_DIR)
  5. vpath %.s .:$(MBED_DIR):$(TMK_DIR)
  6. vpath %.c .:$(MBED_DIR):$(TMK_DIR)
  7. vpath %.cpp .:$(MBED_DIR):$(TMK_DIR)
  8. OBJDIR = ./build
  9. OBJECTS = \
  10. $(OBJDIR)/./main.o
  11. CONFIG_H = config.h
  12. SYS_OBJECTS =
  13. INCLUDE_PATHS = -I.
  14. LIBRARY_PATHS =
  15. LIBRARIES =
  16. # Build Options
  17. # Comment out to disable
  18. #BOOTMAGIC_ENABLE = yes
  19. #MOUSEKEY_ENABLE = yes
  20. include $(TMK_DIR)/tool/mbed/mbed.mk
  21. include $(TMK_DIR)/tool/mbed/common.mk
  22. include $(TMK_DIR)/tool/mbed/gcc.mk