]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - converter/ibmpc_usb/Makefile
636cb324350f766ad658f32f068f6e0512681f9c
[max/tmk_keyboard.git] / converter / ibmpc_usb / Makefile
1 # Target file name (without extension).
2 TARGET ?= ibmpc_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 # project specific files
11 SRC ?=  protocol/ibmpc.c \
12         ibmpc_usb.c
13
14 CONFIG_H ?= config.h
15
16
17 # MCU name
18 MCU ?= atmega32u4
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.
31 F_CPU ?= 16000000
32
33
34 #
35 # LUFA specific
36 #
37 # Target architecture (see library "Board Types" documentation).
38 ARCH ?= AVR8
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.
51 F_USB ?= $(F_CPU)
52
53 # Interrupt driven control endpoint task
54 # Not work with suart debug
55 #OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
56
57 # This improves response of keyboard when wakeup
58 OPT_DEFS += -DSUSPEND_MODE_STANDBY
59
60 # Boot Section Size in *bytes*
61 #   Teensy halfKay   512
62 #   Teensy++ halfKay 1024
63 #   Atmel DFU loader 4096
64 #   LUFA bootloader  4096
65 #   USBaspLoader     2048
66 BOOTLOADER_SIZE ?= 4096
67 OPT_DEFS += -DBOOTLOADER_SIZE=$(BOOTLOADER_SIZE)
68
69
70 # Build Options
71 #   comment out to disable the options.
72 #
73 BOOTMAGIC_ENABLE ?= no  # Virtual DIP switch configuration(+1000)
74 MOUSEKEY_ENABLE ?= no   # Mouse keys(+4700)
75 EXTRAKEY_ENABLE ?= yes  # Audio control and System control(+450)
76 CONSOLE_ENABLE ?= yes   # Console for debug(+400)
77 COMMAND_ENABLE ?= yes    # Commands for debug and configuration
78 NKRO_ENABLE ?= yes      # USB Nkey Rollover
79
80 KEYMAP_SECTION_ENABLE = yes
81 UNIMAP_ENABLE = yes
82
83
84 # Optimize size but this may cause error "relocation truncated to fit"
85 #EXTRALDFLAGS = -Wl,--relax
86
87
88 #
89 # Keymap file
90 #
91 ifdef UNIMAP_ENABLE
92     KEYMAP_FILE = unimap
93 else
94     ifdef ACTIONMAP_ENABLE
95         KEYMAP_FILE = actionmap
96     else
97         KEYMAP_FILE = keymap
98     endif
99 endif
100 ifdef KEYMAP
101     SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC)
102 else
103     SRC := $(KEYMAP_FILE)_plain.c $(SRC)
104 endif
105
106
107 # Search Path
108 VPATH += $(TARGET_DIR)
109 VPATH += $(TMK_DIR)
110
111 include $(TMK_DIR)/protocol.mk
112 include $(TMK_DIR)/protocol/lufa.mk
113 include $(TMK_DIR)/common.mk
114 include $(TMK_DIR)/rules.mk