diff options
author | Christopher Browne <cbbrowne@ca.afilias.info> | 2016-06-13 16:06:03 -0400 |
---|---|---|
committer | Christopher Browne <cbbrowne@ca.afilias.info> | 2016-06-13 16:06:03 -0400 |
commit | dc9bf78f2b1d7d894576d87ea9bfc86d7bb3deee (patch) | |
tree | 44f432118882f9176ef6d901dc3d389d28737254 /converter/ps2_usb/Makefile.mbed | |
parent | d649ab34334ff568448c47a04fcf40f1aa960135 (diff) | |
parent | 25d4772754186b8ab6ef86c28049da67a460f123 (diff) |
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'converter/ps2_usb/Makefile.mbed')
-rw-r--r-- | converter/ps2_usb/Makefile.mbed | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/converter/ps2_usb/Makefile.mbed b/converter/ps2_usb/Makefile.mbed deleted file mode 100644 index a7ea5bcf24..0000000000 --- a/converter/ps2_usb/Makefile.mbed +++ /dev/null @@ -1,46 +0,0 @@ -PROJECT = ps2_usb - -TMK_DIR = ../../tmk_core -MBED_DIR = $(TMK_DIR)/tool/mbed/mbed-sdk - -#VPATH += $(MBED_DIR):$(TMK_DIR) -vpath %.s .:$(MBED_DIR):$(TMK_DIR) -vpath %.c .:$(MBED_DIR):$(TMK_DIR) -vpath %.cpp .:$(MBED_DIR):$(TMK_DIR) - -OBJDIR = ./build - -OBJECTS = \ - $(OBJDIR)/protocol/ps2_busywait.o \ - $(OBJDIR)/protocol/ps2_io_mbed.o \ - $(OBJDIR)/./keymap_common.o \ - $(OBJDIR)/./matrix.o \ - $(OBJDIR)/./led.o \ - $(OBJDIR)/./main.o - -ifdef KEYMAP - OBJECTS := $(OBJDIR)/keymap_$(KEYMAP).o $(OBJECTS) -else - OBJECTS := $(OBJDIR)/keymap_plain.o $(OBJECTS) -endif - -CONFIG_H = config_mbed.h - -SYS_OBJECTS = - -INCLUDE_PATHS = -I. - -LIBRARY_PATHS = -LIBRARIES = - -# Build Options -# Comment out to disable -#BOOTMAGIC_ENABLE = yes -MOUSEKEY_ENABLE = yes - - -#include $(TMK_DIR)/tool/mbed/mk20d50m.mk -include $(TMK_DIR)/tool/mbed/lpc11u35_501.mk -include $(TMK_DIR)/tool/mbed/mbed.mk -include $(TMK_DIR)/tool/mbed/common.mk -include $(TMK_DIR)/tool/mbed/gcc.mk |