summaryrefslogtreecommitdiff
path: root/macway/Makefile
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2011-02-21 23:46:08 +0900
committertmk <nobody@nowhere>2011-02-22 03:09:21 +0900
commit60052acc0fe3e6429f5c1d24073b1f6af019bd19 (patch)
tree555a2f1ed5e4ac1a654673d1fd1deafd86422e90 /macway/Makefile
parentc958b2d19b0ec0dbc02f87dc4c9ccee933a54be5 (diff)
fixed macway to comply new API.
Diffstat (limited to 'macway/Makefile')
-rw-r--r--macway/Makefile60
1 files changed, 15 insertions, 45 deletions
diff --git a/macway/Makefile b/macway/Makefile
index 49dba6746a..c603ca7b98 100644
--- a/macway/Makefile
+++ b/macway/Makefile
@@ -1,46 +1,5 @@
-# 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 = ..
@@ -49,8 +8,12 @@ COMMON_DIR = ..
TARGET_DIR = .
# keyboard dependent files
-TARGET_SRC = keymap.c \
- matrix.c
+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
@@ -73,9 +36,16 @@ F_CPU = 16000000
# comment out to disable the options.
#
MOUSEKEY_ENABLE = yes # Mouse keys
-PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
+#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
USB_EXTRA_ENABLE = yes # Enhanced feature for Windows(Audio control and System control)
#USB_NKRO_ENABLE = yes # USB Nkey Rollover
+
+#---------------- Programming Options --------------------------
+PROGRAM_CMD = teensy_loader_cli.exe -mmcu=$(MCU) -w -v $(TARGET).hex
+
+
+
+include $(COMMON_DIR)/Makefile.pjrc
include $(COMMON_DIR)/Makefile.common