]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - converter/pc88_usb/Makefile.unimap
ibmpc_usb: Add prebuilt firmware files
[max/tmk_keyboard.git] / converter / pc88_usb / Makefile.unimap
1 # Target file name (without extension).
2 TARGET ?= pc88_usb_unimap
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 #   Add one of lines below to select serial protocol implementation
12 #       protocol/serial_uart.c
13 #       protocol/serial_soft.c
14 SRC ?=  matrix.c \
15         protocol/serial_uart.c
16
17 CONFIG_H ?= config.h
18
19
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
23
24
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.
30 F_CPU ?= 16000000
31
32
33 #
34 # LUFA specific
35 #
36 # Target architecture (see library "Board Types" documentation).
37 ARCH ?= AVR8
38
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
46 #     source code.
47 #
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.
50 F_USB ?= $(F_CPU)
51
52 # Interrupt driven control endpoint task
53 OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
54
55
56 # Build Options
57 #   *Comment out* to disable the options.
58 #
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
64 UNIMAP_ENABLE ?= yes
65
66
67 # Boot Section Size in bytes
68 #   Teensy halfKay   512
69 #   Atmel DFU loader 4096
70 #   LUFA bootloader  4096
71 OPT_DEFS += -DBOOTLOADER_SIZE=4096
72
73
74 #
75 # Keymap file
76 #
77 ifeq (yes,$(strip $(UNIMAP_ENABLE)))
78     KEYMAP_FILE = unimap
79 else
80     ifeq (yes,$(strip $(ACTIONMAP_ENABLE)))
81         KEYMAP_FILE = actionmap
82     else
83         KEYMAP_FILE = keymap
84     endif
85 endif
86 ifdef KEYMAP
87     SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC)
88 else
89     SRC := $(KEYMAP_FILE).c $(SRC)
90 endif
91
92
93 # Search Path
94 VPATH += $(TARGET_DIR)
95 VPATH += $(TMK_DIR)
96
97
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