diff options
author | tmk <nobody@nowhere> | 2012-06-07 12:35:24 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-06-07 12:35:24 +0900 |
commit | 63d82fcaeb78d0764f39667b937262ed4a692c17 (patch) | |
tree | 95c70db82410a69084594555a435b0a009ba68e9 /ps2_usb | |
parent | f4125707399d11a7d80587659c464b9bcddb8c56 (diff) | |
download | firmware-63d82fcaeb78d0764f39667b937262ed4a692c17.tar.gz firmware-63d82fcaeb78d0764f39667b937262ed4a692c17.tar.bz2 firmware-63d82fcaeb78d0764f39667b937262ed4a692c17.zip |
Fixed Makefile to adjust new directories.
Diffstat (limited to 'ps2_usb')
-rw-r--r-- | ps2_usb/Makefile | 8 | ||||
-rw-r--r-- | ps2_usb/Makefile.pjrc_usart | 8 | ||||
-rw-r--r-- | ps2_usb/Makefile.vusb | 8 |
3 files changed, 15 insertions, 9 deletions
diff --git a/ps2_usb/Makefile b/ps2_usb/Makefile index f003aea01..515e6899f 100644 --- a/ps2_usb/Makefile +++ b/ps2_usb/Makefile @@ -7,7 +7,7 @@ TARGET = ps2_usb_pjrc # Directory common source filess exist -COMMON_DIR = .. +TOP_DIR = .. # Directory keyboard dependent files exist TARGET_DIR = . @@ -52,5 +52,7 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex -include $(COMMON_DIR)/pjrc.mk -include $(COMMON_DIR)/common.mk +include $(TOP_DIR)/protocol/pjrc.mk +include $(TOP_DIR)/protocol.mk +include $(TOP_DIR)/common.mk +include $(TOP_DIR)/rules.mk diff --git a/ps2_usb/Makefile.pjrc_usart b/ps2_usb/Makefile.pjrc_usart index e620e66c2..2e570e710 100644 --- a/ps2_usb/Makefile.pjrc_usart +++ b/ps2_usb/Makefile.pjrc_usart @@ -7,7 +7,7 @@ TARGET = ps2_usb_pjrc_usart # Directory common source filess exist -COMMON_DIR = .. +TOP_DIR = .. # Directory keyboard dependent files exist TARGET_DIR = . @@ -52,5 +52,7 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex -include $(COMMON_DIR)/pjrc.mk -include $(COMMON_DIR)/common.mk +include $(TOP_DIR)/protocol/pjrc.mk +include $(TOP_DIR)/protocol.mk +include $(TOP_DIR)/common.mk +include $(TOP_DIR)/rules.mk diff --git a/ps2_usb/Makefile.vusb b/ps2_usb/Makefile.vusb index 5b6978f01..d85f1d55d 100644 --- a/ps2_usb/Makefile.vusb +++ b/ps2_usb/Makefile.vusb @@ -7,7 +7,7 @@ TARGET = ps2_usb_vusb # Directory common source filess exist -COMMON_DIR = .. +TOP_DIR = .. # Directory keyboard dependent files exist TARGET_DIR = . @@ -86,5 +86,7 @@ PROGRAM_CMD = $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE -include $(COMMON_DIR)/vusb.mk -include $(COMMON_DIR)/common.mk +include $(TOP_DIR)/protocol/vusb.mk +include $(TOP_DIR)/protocol.mk +include $(TOP_DIR)/common.mk +include $(TOP_DIR)/rules.mk |