diff options
| author | 2012-06-07 12:35:24 +0900 | |
|---|---|---|
| committer | 2012-06-07 12:35:24 +0900 | |
| commit | 63d82fcaeb78d0764f39667b937262ed4a692c17 (patch) | |
| tree | 95c70db82410a69084594555a435b0a009ba68e9 /macway | |
| parent | f4125707399d11a7d80587659c464b9bcddb8c56 (diff) | |
| download | qmk_firmware-63d82fcaeb78d0764f39667b937262ed4a692c17.tar.gz | |
Fixed Makefile to adjust new directories.
Diffstat (limited to 'macway')
| -rw-r--r-- | macway/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/macway/Makefile b/macway/Makefile index b8b0a85e1..83d31b674 100644 --- a/macway/Makefile +++ b/macway/Makefile @@ -2,7 +2,7 @@ TARGET = macway # Directory common source filess exist -COMMON_DIR = .. +TOP_DIR = .. # Directory keyboard dependent files exist TARGET_DIR = . @@ -47,5 +47,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 |