diff options
author | tmk <nobody@nowhere> | 2012-06-30 14:44:59 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-06-30 14:44:59 +0900 |
commit | 2769f09d11a4c45362f2e6137f2469d057d8757e (patch) | |
tree | 1c61e7b91f1f4986232a1fdca421b3346f8a9431 /converter/x68k_usb/Makefile | |
parent | 6d79e6579f1b769f3547856b8af56bd357580adf (diff) |
Fix Makefiles.
Diffstat (limited to 'converter/x68k_usb/Makefile')
-rw-r--r-- | converter/x68k_usb/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/converter/x68k_usb/Makefile b/converter/x68k_usb/Makefile index c3b5fa29f3..62b976c56f 100644 --- a/converter/x68k_usb/Makefile +++ b/converter/x68k_usb/Makefile @@ -13,8 +13,7 @@ TOP_DIR = ../.. TARGET_DIR = . # keyboard dependent files -SRC = main.c \ - keymap.c \ +SRC = keymap.c \ matrix.c \ led.c \ x68k.c @@ -80,6 +79,10 @@ AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER) PROGRAM_CMD = dfu-programmer atmega32u4 flash $(TARGET).hex +# Search Path +VPATH += $(TARGET_DIR) +VPATH += $(TOP_DIR) + include $(TOP_DIR)/protocol/pjrc.mk include $(TOP_DIR)/protocol.mk |