d5ac5444 |
1 | # Target file name (without extension). |
6b34906b |
2 | TARGET ?= alps64 |
d5ac5444 |
3 | |
4 | # Directory common source filess exist |
6b34906b |
5 | TMK_DIR ?= ../../tmk_core |
d5ac5444 |
6 | |
7 | # Directory keyboard dependent files exist |
6b34906b |
8 | TARGET_DIR ?= . |
d5ac5444 |
9 | |
10 | # project specific files |
6b34906b |
11 | SRC ?= matrix.c \ |
d5ac5444 |
12 | led.c |
13 | |
6b34906b |
14 | CONFIG_H ?= config.h |
d5ac5444 |
15 | |
16 | |
17 | # MCU name |
6b34906b |
18 | MCU ?= atmega32u2 |
d5ac5444 |
19 | |
20 | # Processor frequency. |
21 | # This will define a symbol, F_CPU, in all source code files equal to the |
22 | # processor frequency in Hz. You can then use this symbol in your source code to |
23 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done |
24 | # automatically to create a 32-bit value in your source code. |
25 | # |
26 | # This will be an integer division of F_USB below, as it is sourced by |
27 | # F_USB after it has run through any CPU prescalers. Note that this value |
28 | # does not *change* the processor frequency - it should merely be updated to |
29 | # reflect the processor speed set externally so that the code can use accurate |
30 | # software delays. |
6b34906b |
31 | F_CPU ?= 16000000 |
d5ac5444 |
32 | |
33 | |
34 | # |
35 | # LUFA specific |
36 | # |
37 | # Target architecture (see library "Board Types" documentation). |
6b34906b |
38 | ARCH ?= AVR8 |
d5ac5444 |
39 | |
40 | # Input clock frequency. |
41 | # This will define a symbol, F_USB, in all source code files equal to the |
42 | # input clock frequency (before any prescaling is performed) in Hz. This value may |
43 | # differ from F_CPU if prescaling is used on the latter, and is required as the |
44 | # raw input clock is fed directly to the PLL sections of the AVR for high speed |
45 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' |
46 | # at the end, this will be done automatically to create a 32-bit value in your |
47 | # source code. |
48 | # |
49 | # If no clock division is performed on the input clock inside the AVR (via the |
50 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. |
6b34906b |
51 | F_USB ?= $(F_CPU) |
d5ac5444 |
52 | |
53 | # Interrupt driven control endpoint task(+60) |
54 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT |
55 | |
56 | |
57 | # Boot Section Size in *bytes* |
58 | # Teensy halfKay 512 |
59 | # Teensy++ halfKay 1024 |
60 | # Atmel DFU loader 4096 |
61 | # LUFA bootloader 4096 |
62 | # USBaspLoader 2048 |
6b34906b |
63 | BOOTLOADER_SIZE ?= 4096 |
64 | OPT_DEFS += -DBOOTLOADER_SIZE=$(BOOTLOADER_SIZE) |
d5ac5444 |
65 | |
66 | |
67 | # Build Options |
68 | # comment out to disable the options. |
69 | # |
6b34906b |
70 | BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration(+1000) |
71 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) |
72 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) |
73 | CONSOLE_ENABLE ?= yes # Console for debug(+400) |
74 | COMMAND_ENABLE ?= yes # Commands for debug and configuration |
75 | #SLEEP_LED_ENABLE ?= yes # Breathing sleep LED during USB suspend |
76 | #NKRO_ENABLE ?= yes # USB Nkey Rollover |
77 | #ACTIONMAP_ENABLE ?= yes # Use 16bit action codes in keymap instead of 8bit keycodes |
78 | |
79 | |
80 | # |
81 | # Keymap file |
82 | # |
83 | ifeq (yes,$(strip $(UNIMAP_ENABLE))) |
84 | KEYMAP_FILE = unimap |
0ed50176 |
85 | else |
6b34906b |
86 | ifeq (yes,$(strip $(ACTIONMAP_ENABLE))) |
87 | KEYMAP_FILE = actionmap |
88 | else |
89 | KEYMAP_FILE = keymap |
90 | endif |
0ed50176 |
91 | endif |
92 | ifdef KEYMAP |
93 | SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC) |
94 | else |
95 | SRC := $(KEYMAP_FILE)_plain.c $(SRC) |
96 | endif |
d5ac5444 |
97 | |
98 | |
99 | # Optimize size but this may cause error "relocation truncated to fit" |
100 | #EXTRALDFLAGS = -Wl,--relax |
101 | |
102 | # Search Path |
103 | VPATH += $(TARGET_DIR) |
b4e2d325 |
104 | VPATH += $(TMK_DIR) |
d5ac5444 |
105 | |
b4e2d325 |
106 | include $(TMK_DIR)/protocol/lufa.mk |
107 | include $(TMK_DIR)/common.mk |
108 | include $(TMK_DIR)/rules.mk |