1
0

Update to latest DMBS, fix XPLAINBridge project compilation errors on full tree build.

This commit is contained in:
Dean Camera
2016-07-17 17:30:55 +10:00
parent 0f470dc8b4
commit def392aca0
3 changed files with 5 additions and 7 deletions

View File

@@ -31,13 +31,11 @@ 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.
override OBJDIR:=$(shell pwd)/$(OBJDIR)
# directory as the one where the build object files are to be stored, by giving it a
# project-specific name.
OBJDIR := obj.$(TARGET)
# Include LUFA-specific DMBS extension modules
DMBS_LUFA_PATH ?= $(LUFA_PATH)/Build/LUFA