]> git.gir.st - tmk_keyboard.git/blob - ps2_usb/Makefile
PS/2 to USB keyboard converter
[tmk_keyboard.git] / ps2_usb / Makefile
1 # Hey Emacs, this is a -*- makefile -*-
2 #----------------------------------------------------------------------------
3 # WinAVR Makefile Template written by Eric B. Weddington, Jörg Wunsch, et al.
4 #
5 # Released to the Public Domain
6 #
7 # Additional material for this makefile was written by:
8 # Peter Fleury
9 # Tim Henigan
10 # Colin O'Flynn
11 # Reiner Patommel
12 # Markus Pfaff
13 # Sander Pool
14 # Frederik Rouleau
15 # Carlos Lamas
16 #
17 #----------------------------------------------------------------------------
18 # On command line:
19 #
20 # make all = Make software.
21 #
22 # make clean = Clean out built project files.
23 #
24 # make coff = Convert ELF to AVR COFF.
25 #
26 # make extcoff = Convert ELF to AVR Extended COFF.
27 #
28 # make program = Download the hex file to the device, using avrdude.
29 # Please customize the avrdude settings below first!
30 #
31 # make debug = Start either simulavr or avarice as specified for debugging,
32 # with avr-gdb or avr-insight as the front end for debugging.
33 #
34 # make filename.s = Just compile filename.c into the assembler code only.
35 #
36 # make filename.i = Create a preprocessed source file for use in submitting
37 # bug reports to the GCC project.
38 #
39 # To rebuild project do "make clean" then "make all".
40 #----------------------------------------------------------------------------
41
42 # Target file name (without extension).
43 TARGET = tmk_ps2_usb
44
45 # Directory common source filess exist
46 COMMON_DIR = ..
47
48 # Directory keyboard dependent files exist
49 TARGET_DIR = .
50
51 # keyboard dependent files
52 TARGET_SRC = keymap.c \
53 matrix.c \
54 ps2.c
55
56
57 # MCU name, you MUST set this to match the board you are using
58 # type "make clean" after changing this, so all files will be rebuilt
59 #MCU = at90usb162 # Teensy 1.0
60 MCU = atmega32u4 # Teensy 2.0
61 #MCU = at90usb646 # Teensy++ 1.0
62 #MCU = at90usb1286 # Teensy++ 2.0
63
64
65 # Processor frequency.
66 # Normally the first thing your program should do is set the clock prescaler,
67 # so your program will run at the correct speed. You should also set this
68 # variable to same clock speed. The _delay_ms() macro uses this, and many
69 # examples use this variable to calculate timings. Do not add a "UL" here.
70 F_CPU = 16000000
71
72
73 # Build Options
74 # comment out to disable the options.
75 #
76 MOUSEKEY_ENABLE = yes # Mouse keys
77 USB_EXTRA_ENABLE = yes # Enhanced feature for Windows(Audio control and System control)
78 USB_NKRO_ENABLE = yes # USB Nkey Rollover
79
80
81 include $(COMMON_DIR)/Makefile.common
Imprint / Impressum