X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=macway%2FMakefile;h=6e7fa7fd9f3c6c028be7b5d1b2641bc0dd26a36a;hb=0dde25e81cc06ed6331c030839b7048c69fc9c84;hp=7559b2b057d03d6c969c6e55987d4e37bb2f6f8b;hpb=54b5bafaacf0d7863b7bdb84dd69cbc80db77956;p=max%2Ftmk_keyboard.git diff --git a/macway/Makefile b/macway/Makefile index 7559b2b0..6e7fa7fd 100644 --- a/macway/Makefile +++ b/macway/Makefile @@ -1,52 +1,19 @@ -# Hey Emacs, this is a -*- makefile -*- -#---------------------------------------------------------------------------- -# WinAVR Makefile Template written by Eric B. Weddington, Jörg Wunsch, et al. -# -# Released to the Public Domain -# -# Additional material for this makefile was written by: -# Peter Fleury -# Tim Henigan -# Colin O'Flynn -# Reiner Patommel -# Markus Pfaff -# Sander Pool -# Frederik Rouleau -# Carlos Lamas -# -#---------------------------------------------------------------------------- -# On command line: -# -# make all = Make software. -# -# make clean = Clean out built project files. -# -# make coff = Convert ELF to AVR COFF. -# -# make extcoff = Convert ELF to AVR Extended COFF. -# -# make program = Download the hex file to the device, using avrdude. -# Please customize the avrdude settings below first! -# -# make debug = Start either simulavr or avarice as specified for debugging, -# with avr-gdb or avr-insight as the front end for debugging. -# -# make filename.s = Just compile filename.c into the assembler code only. -# -# make filename.i = Create a preprocessed source file for use in submitting -# bug reports to the GCC project. -# -# To rebuild project do "make clean" then "make all". -#---------------------------------------------------------------------------- - - # Target file name (without extension). -TARGET = tmk_macway +TARGET = macway +# Directory common source filess exist COMMON_DIR = .. + +# Directory keyboard dependent files exist TARGET_DIR = . -TARGET_SRC = $(TARGET_DIR)/keymap.c \ - $(TARGET_DIR)/matrix.c + +# keyboard dependent files +TARGET_SRC = main_pjrc.c \ + keymap.c \ + matrix.c \ + led.c + +CONFIG_H = config.h # MCU name, you MUST set this to match the board you are using @@ -64,4 +31,21 @@ MCU = atmega32u4 # Teensy 2.0 # examples use this variable to calculate timings. Do not add a "UL" here. F_CPU = 16000000 + +# Build Options +# comment out to disable the options. +# +MOUSEKEY_ENABLE = yes # Mouse keys +#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support +USB_EXTRA_ENABLE = yes # Audio control and System control +#USB_NKRO_ENABLE = yes # USB Nkey Rollover + + + +#---------------- Programming Options -------------------------- +PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex + + + +include $(COMMON_DIR)/Makefile.pjrc include $(COMMON_DIR)/Makefile.common