]> git.friedersdorff.com Git - max/tmk_keyboard.git/blobdiff - converter/pc98_usb/Makefile
pc98_usb: unimap for RakuRaku keyboard
[max/tmk_keyboard.git] / converter / pc98_usb / Makefile
index 9892276d7fb56df3b5c93b62737c4375acd58c56..b8438d2da6a3bc964a1988aa462969bb23b1b1ec 100644 (file)
@@ -8,11 +8,8 @@ TMK_DIR = ../../tmk_core
 TARGET_DIR = .
 
 # keyboard dependent files
-SRC =  keymap.c \
-       matrix.c \
-       led.c \
+SRC =  matrix.c \
        protocol/serial_uart.c
-#      protocol/serial_soft.c
 
 CONFIG_H = config.h
 
@@ -20,9 +17,10 @@ CONFIG_H = config.h
 # MCU name, you MUST set this to match the board you are using
 # type "make clean" after changing this, so all files will be rebuilt
 #MCU = at90usb162       # Teensy 1.0
-MCU = atmega32u4       # Teensy 2.0
+#MCU = atmega32u4       # Teensy 2.0
 #MCU = at90usb646       # Teensy++ 1.0
 #MCU = at90usb1286      # Teensy++ 2.0
+MCU = atmega32u2       # TMK Converter
 
 
 # Processor frequency.
@@ -62,7 +60,9 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
 MOUSEKEY_ENABLE = yes  # Mouse keys
 EXTRAKEY_ENABLE = yes  # Audio control and System control
 CONSOLE_ENABLE = yes   # Console for debug
+COMMAND_ENABLE = yes    # Commands for debug and configuration
 #NKRO_ENABLE = yes     # USB Nkey Rollover
+UNIMAP_ENABLE = yes
 
 
 # Boot Section Size in bytes
@@ -72,6 +72,25 @@ CONSOLE_ENABLE = yes # Console for debug
 OPT_DEFS += -DBOOTLOADER_SIZE=4096
 
 
+#
+# Keymap file
+#
+ifeq (yes,$(strip $(UNIMAP_ENABLE)))
+    KEYMAP_FILE = unimap
+else
+    ifeq (yes,$(strip $(ACTIONMAP_ENABLE)))
+        KEYMAP_FILE = actionmap
+    else
+        KEYMAP_FILE = keymap
+    endif
+endif
+ifdef KEYMAP
+    SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC)
+else
+    SRC := $(KEYMAP_FILE).c $(SRC)
+endif
+
+
 # Search Path
 VPATH += $(TARGET_DIR)
 VPATH += $(TMK_DIR)