diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2015-12-22 22:14:09 +1100 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2015-12-22 22:14:09 +1100 |
commit | 2fcd50ada8e0916d1ed5addb2567b4bfcee8497c (patch) | |
tree | 12f7a42f5d481cee4a76e1bb4db70653f14cb89a /Projects/XPLAINBridge/makefile | |
parent | 09b6c80555bc17b1206ee688ccdfc76454b2dbd7 (diff) | |
download | lufa-2fcd50ada8e0916d1ed5addb2567b4bfcee8497c.tar.gz lufa-2fcd50ada8e0916d1ed5addb2567b4bfcee8497c.tar.bz2 lufa-2fcd50ada8e0916d1ed5addb2567b4bfcee8497c.zip |
Fix C++ builds, XPLAINBridge project.
Diffstat (limited to 'Projects/XPLAINBridge/makefile')
-rw-r--r-- | Projects/XPLAINBridge/makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Projects/XPLAINBridge/makefile b/Projects/XPLAINBridge/makefile index 65ca730f9..aacca6780 100644 --- a/Projects/XPLAINBridge/makefile +++ b/Projects/XPLAINBridge/makefile @@ -31,13 +31,13 @@ LD_FLAGS = # Default target all: +OBJDIR := obj + # Since this project borrows files from the AVRISP-MKII project which may also have an # identical OBJDIR directory, we need to enforce the use of this project's object file # directory as the one where the build object files are to be stored by pre-pending the # absolute path of the current project to the OBJDIR variable. -ifneq ($(OBJDIR),) - override OBJDIR:=$(shell pwd)/$(OBJDIR) -endif +override OBJDIR:=$(shell pwd)/$(OBJDIR) # Include LUFA build script makefiles include $(LUFA_PATH)/Build/lufa_core.mk |