]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboard/gh60_rev_c/Makefile
Merge pull request #364 from techtomas/techtomas
[qmk_firmware.git] / keyboard / gh60_rev_c / Makefile
1 #----------------------------------------------------------------------------\r
2 # On command line:\r
3 #\r
4 # make all = Make software.\r
5 #\r
6 # make clean = Clean out built project files.\r
7 #\r
8 # make coff = Convert ELF to AVR COFF.\r
9 #\r
10 # make extcoff = Convert ELF to AVR Extended COFF.\r
11 #\r
12 # make program = Download the hex file to the device.\r
13 #                Please customize your programmer settings(PROGRAM_CMD)\r
14 #\r
15 # make teensy = Download the hex file to the device, using teensy_loader_cli.\r
16 #               (must have teensy_loader_cli installed).\r
17 #\r
18 # make dfu = Download the hex file to the device, using dfu-programmer (must\r
19 #            have dfu-programmer installed).\r
20 #\r
21 # make flip = Download the hex file to the device, using Atmel FLIP (must\r
22 #             have Atmel FLIP installed).\r
23 #\r
24 # make dfu-ee = Download the eeprom file to the device, using dfu-programmer\r
25 #               (must have dfu-programmer installed).\r
26 #\r
27 # make flip-ee = Download the eeprom file to the device, using Atmel FLIP\r
28 #                (must have Atmel FLIP installed).\r
29 #\r
30 # make debug = Start either simulavr or avarice as specified for debugging, \r
31 #              with avr-gdb or avr-insight as the front end for debugging.\r
32 #\r
33 # make filename.s = Just compile filename.c into the assembler code only.\r
34 #\r
35 # make filename.i = Create a preprocessed source file for use in submitting\r
36 #                   bug reports to the GCC project.\r
37 #\r
38 # To rebuild project do "make clean" then "make all".\r
39 #----------------------------------------------------------------------------\r
40 \r
41 # Target file name (without extension).\r
42 TARGET = gh60\r
43 \r
44 \r
45 # Directory common source filess exist\r
46 TOP_DIR = ../..\r
47 TMK_DIR = ../../tmk_core\r
48 \r
49 # Directory keyboard dependent files exist\r
50 TARGET_DIR = .\r
51 \r
52 # # project specific files\r
53 SRC = gh60.c\r
54 \r
55 ifdef KEYMAP\r
56     SRC := keymaps/$(KEYMAP).c $(SRC)\r
57 else\r
58     SRC := keymaps/default.c $(SRC)\r
59 endif\r
60 \r
61 CONFIG_H = config.h\r
62 \r
63 # MCU name\r
64 #MCU = at90usb1287\r
65 MCU = atmega32u4\r
66 \r
67 # Processor frequency.\r
68 #     This will define a symbol, F_CPU, in all source code files equal to the\r
69 #     processor frequency in Hz. You can then use this symbol in your source code to\r
70 #     calculate timings. Do NOT tack on a 'UL' at the end, this will be done\r
71 #     automatically to create a 32-bit value in your source code.\r
72 #\r
73 #     This will be an integer division of F_USB below, as it is sourced by\r
74 #     F_USB after it has run through any CPU prescalers. Note that this value\r
75 #     does not *change* the processor frequency - it should merely be updated to\r
76 #     reflect the processor speed set externally so that the code can use accurate\r
77 #     software delays.\r
78 F_CPU = 16000000\r
79 \r
80 \r
81 #\r
82 # LUFA specific\r
83 #\r
84 # Target architecture (see library "Board Types" documentation).\r
85 ARCH = AVR8\r
86 \r
87 # Input clock frequency.\r
88 #     This will define a symbol, F_USB, in all source code files equal to the\r
89 #     input clock frequency (before any prescaling is performed) in Hz. This value may\r
90 #     differ from F_CPU if prescaling is used on the latter, and is required as the\r
91 #     raw input clock is fed directly to the PLL sections of the AVR for high speed\r
92 #     clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'\r
93 #     at the end, this will be done automatically to create a 32-bit value in your\r
94 #     source code.\r
95 #\r
96 #     If no clock division is performed on the input clock inside the AVR (via the\r
97 #     CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.\r
98 F_USB = $(F_CPU)\r
99 \r
100 # Interrupt driven control endpoint task(+60)\r
101 OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT\r
102 \r
103 \r
104 # Boot Section Size in *bytes*\r
105 #   Teensy halfKay   512\r
106 #   Teensy++ halfKay 1024\r
107 #   Atmel DFU loader 4096\r
108 #   LUFA bootloader  4096\r
109 #   USBaspLoader     2048\r
110 OPT_DEFS += -DBOOTLOADER_SIZE=4096\r
111 \r
112 \r
113 # Build Options\r
114 #   comment out to disable the options.\r
115 #\r
116 BOOTMAGIC_ENABLE = yes          # Virtual DIP switch configuration(+1000)\r
117 MOUSEKEY_ENABLE = yes           # Mouse keys(+4700)\r
118 EXTRAKEY_ENABLE = yes           # Audio control and System control(+450)\r
119 # CONSOLE_ENABLE = yes          # Console for debug(+400)\r
120 # COMMAND_ENABLE = yes          # Commands for debug and configuration\r
121 KEYBOARD_LOCK_ENABLE = yes      # Allow locking of keyboard via magic key\r
122 # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE\r
123 # SLEEP_LED_ENABLE = yes        # Breathing sleep LED during USB suspend\r
124 NKRO_ENABLE = yes                       # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work\r
125 # BACKLIGHT_ENABLE = yes        # Enable keyboard backlight functionality\r
126 # MIDI_ENABLE = YES                     # MIDI controls\r
127 # UNICODE_ENABLE = YES          # Unicode\r
128 # BLUETOOTH_ENABLE = yes        # Enable Bluetooth with the Adafruit EZ-Key HID\r
129 \r
130 \r
131 # Optimize size but this may cause error "relocation truncated to fit"\r
132 #EXTRALDFLAGS = -Wl,--relax\r
133 \r
134 # Search Path\r
135 VPATH += $(TARGET_DIR)\r
136 VPATH += $(TOP_DIR)\r
137 VPATH += $(TMK_DIR)\r
138 \r
139 include $(TOP_DIR)/quantum/quantum.mk\r
140 \r