]> git.gir.st - tmk_keyboard.git/blob - converter/next_usb/Makefile
pana_m8: Add initial files
[tmk_keyboard.git] / converter / next_usb / Makefile
1 # Target file name (without extension).
2 TARGET ?= next_usb
3
4 # Directory common source filess exist
5 TMK_DIR ?= ../../tmk_core
6
7 # Directory keyboard dependent files exist
8 TARGET_DIR ?= .
9
10 # keyboard dependent files
11 SRC ?= matrix.c \
12 led.c
13
14 CONFIG_H ?= config.h
15
16 #
17 # Keymap file
18 #
19 ifeq (yes,$(strip $(UNIMAP_ENABLE)))
20 KEYMAP_FILE = unimap
21 else
22 ifeq (yes,$(strip $(ACTIONMAP_ENABLE)))
23 KEYMAP_FILE = actionmap
24 else
25 KEYMAP_FILE = keymap
26 endif
27 endif
28 ifdef KEYMAP
29 SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC)
30 else
31 SRC := $(KEYMAP_FILE).c $(SRC)
32 endif
33
34
35 # MCU name, you MUST set this to match the board you are using
36 # type "make clean" after changing this, so all files will be rebuilt
37 #MCU = at90usb162 # Teensy 1.0
38 #MCU = atmega32u4 # Teensy 2.0
39 #MCU = at90usb646 # Teensy++ 1.0
40 #MCU = at90usb1286 # Teensy++ 2.0
41 MCU ?= atmega32u2 # TMK converter
42
43
44 # Processor frequency.
45 # Normally the first thing your program should do is set the clock prescaler,
46 # so your program will run at the correct speed. You should also set this
47 # variable to same clock speed. The _delay_ms() macro uses this, and many
48 # examples use this variable to calculate timings. Do not add a "UL" here.
49 F_CPU ?= 16000000
50
51
52 #
53 # LUFA specific
54 #
55 # Target architecture (see library "Board Types" documentation).
56 ARCH ?= AVR8
57
58 # Input clock frequency.
59 # This will define a symbol, F_USB, in all source code files equal to the
60 # input clock frequency (before any prescaling is performed) in Hz. This value may
61 # differ from F_CPU if prescaling is used on the latter, and is required as the
62 # raw input clock is fed directly to the PLL sections of the AVR for high speed
63 # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
64 # at the end, this will be done automatically to create a 32-bit value in your
65 # source code.
66 #
67 # If no clock division is performed on the input clock inside the AVR (via the
68 # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
69 F_USB ?= $(F_CPU)
70
71 # Interrupt driven control endpoint task(+60)
72 #OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
73
74
75 # Boot Section Size in *bytes*
76 # Teensy halfKay 512
77 # Teensy++ halfKay 1024
78 # Atmel DFU loader 4096
79 # LUFA bootloader 4096
80 # USBaspLoader 2048
81 OPT_DEFS += -DBOOTLOADER_SIZE=4096
82
83
84 # Build Options
85 # *Comment out* to disable the options.
86 #
87 #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
88 MOUSEKEY_ENABLE ?= yes # Mouse keys
89 EXTRAKEY_ENABLE ?= yes # Audio control and System control
90 CONSOLE_ENABLE ?= yes # Console for debug(+400)
91 COMMAND_ENABLE ?= yes # Commands for debug and configuration
92 #NKRO_ENABLE ?= yes # USB Nkey Rollover
93
94 SRC += next_kbd.c
95
96
97 # Search Path
98 VPATH += $(TARGET_DIR)
99 VPATH += $(TMK_DIR)
100
101
102 include $(TMK_DIR)/protocol.mk
103 include $(TMK_DIR)/protocol/lufa.mk
104 include $(TMK_DIR)/common.mk
105 include $(TMK_DIR)/rules.mk
Imprint / Impressum