projects
/
pub
/
USBasp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
73a87a8
)
Fix broken builds when OBJDIR is specified in the BUILD build system module.
author
Dean Camera
<dean@fourwalledcubicle.com>
Mon, 9 Jul 2012 16:17:57 +0000
(16:17 +0000)
committer
Dean Camera
<dean@fourwalledcubicle.com>
Mon, 9 Jul 2012 16:17:57 +0000
(16:17 +0000)
LUFA/Build/lufa.build.in
patch
|
blob
|
blame
|
history
diff --git
a/LUFA/Build/lufa.build.in
b/LUFA/Build/lufa.build.in
index
e76a230
..
9d527dd
100644
(file)
--- a/
LUFA/Build/lufa.build.in
+++ b/
LUFA/Build/lufa.build.in
@@
-145,7
+145,7
@@
endif
# Convert input source filenames into a list of required output object files
OBJECT_FILES += $(addsuffix .o, $(basename $(SRC)))
ifneq ($(OBJDIR),.)
# Convert input source filenames into a list of required output object files
OBJECT_FILES += $(addsuffix .o, $(basename $(SRC)))
ifneq ($(OBJDIR),.)
- $(shell mkdir $(OBJDIR) 2>
&1 >
/dev/null)
+ $(shell mkdir $(OBJDIR) 2> /dev/null)
VPATH += $(dir $(SRC))
OBJECT_FILES := $(addprefix $(patsubst %/,%,$(OBJDIR))/, $(notdir $(OBJECT_FILES)))
endif
VPATH += $(dir $(SRC))
OBJECT_FILES := $(addprefix $(patsubst %/,%,$(OBJDIR))/, $(notdir $(OBJECT_FILES)))
endif
@@
-228,7
+228,7
@@
clean: mostlyclean
all: build_begin check-source gcc-version elf hex lss sym size build_end
all: build_begin check-source gcc-version elf hex lss sym size build_end
-lib: $(TARGET).a
+lib:
lib
$(TARGET).a
elf: $(TARGET).elf
hex: $(TARGET).hex $(TARGET).eep
lss: $(TARGET).lss
elf: $(TARGET).elf
hex: $(TARGET).hex $(TARGET).eep
lss: $(TARGET).lss