1 # Target file name (without extension).
4 # Directory common source filess exist
5 TMK_DIR ?= ../../tmk_core
7 # Directory keyboard dependent files exist
10 # keyboard dependent files
11 # Add one of lines below to select serial protocol implementation
12 # protocol/serial_uart.c
13 # protocol/serial_soft.c
15 protocol/serial_uart.c
20 # MCU name, you MUST set this to match the board you are using
21 # type "make clean" after changing this, so all files will be rebuilt
22 MCU ?= atmega32u2 # TMK Converter
25 # Processor frequency.
26 # Normally the first thing your program should do is set the clock prescaler,
27 # so your program will run at the correct speed. You should also set this
28 # variable to same clock speed. The _delay_ms() macro uses this, and many
29 # examples use this variable to calculate timings. Do not add a "UL" here.
36 # Target architecture (see library "Board Types" documentation).
39 # Input clock frequency.
40 # This will define a symbol, F_USB, in all source code files equal to the
41 # input clock frequency (before any prescaling is performed) in Hz. This value may
42 # differ from F_CPU if prescaling is used on the latter, and is required as the
43 # raw input clock is fed directly to the PLL sections of the AVR for high speed
44 # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
45 # at the end, this will be done automatically to create a 32-bit value in your
48 # If no clock division is performed on the input clock inside the AVR (via the
49 # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
52 # Interrupt driven control endpoint task
53 #OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
57 # *Comment out* to disable the options.
59 MOUSEKEY_ENABLE ?= yes # Mouse keys
60 EXTRAKEY_ENABLE ?= yes # Audio control and System control
61 CONSOLE_ENABLE ?= yes # Console for debug
62 COMMAND_ENABLE ?= yes # Commands for debug and configuration
63 #NKRO_ENABLE ?= yes # USB Nkey Rollover
67 # Boot Section Size in bytes
69 # Atmel DFU loader 4096
70 # LUFA bootloader 4096
71 OPT_DEFS += -DBOOTLOADER_SIZE=4096
77 ifeq (yes,$(strip $(UNIMAP_ENABLE)))
80 ifeq (yes,$(strip $(ACTIONMAP_ENABLE)))
81 KEYMAP_FILE = actionmap
87 SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC)
89 SRC := $(KEYMAP_FILE).c $(SRC)
94 VPATH += $(TARGET_DIR)
98 include $(TMK_DIR)/protocol/lufa.mk
99 include $(TMK_DIR)/protocol.mk
100 include $(TMK_DIR)/common.mk
101 include $(TMK_DIR)/rules.mk