diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2016-10-04 21:29:43 +1100 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2016-10-04 21:29:43 +1100 |
commit | 39aa928de165f61af42542a13dddf1d16947d5a8 (patch) | |
tree | 1cf60a5b5a2f6c6635552aa2de951f1b58c82fce | |
parent | 75f367897d324283bfcd599548cbd0361dc73252 (diff) | |
download | lufa-39aa928de165f61af42542a13dddf1d16947d5a8.tar.gz lufa-39aa928de165f61af42542a13dddf1d16947d5a8.tar.bz2 lufa-39aa928de165f61af42542a13dddf1d16947d5a8.zip |
Use folder-relative output folder in the XPLAINBridge makefile.
-rw-r--r-- | Projects/XPLAINBridge/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/XPLAINBridge/makefile b/Projects/XPLAINBridge/makefile index e23b54d37..7120dd991 100644 --- a/Projects/XPLAINBridge/makefile +++ b/Projects/XPLAINBridge/makefile @@ -34,8 +34,8 @@ all: # 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 giving it a -# project-specific name. -OBJDIR := obj.$(TARGET) +# path relative to the current folder. +OBJDIR := ./obj # Include LUFA-specific DMBS extension modules DMBS_LUFA_PATH ?= $(LUFA_PATH)/Build/LUFA |