projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix accidental struct copies on the stack in the old RNDISEthernet demo TCP code.
[pub/USBasp.git]
/
Demos
/
Device
/
LowLevel
/
makefile
diff --git
a/Demos/Device/LowLevel/makefile
b/Demos/Device/LowLevel/makefile
index
99e7c24
..
ad88000
100644
(file)
--- a/
Demos/Device/LowLevel/makefile
+++ b/
Demos/Device/LowLevel/makefile
@@
-23,7
+23,9
@@
ifeq ($(MAKELEVEL), 10)
endif
all:
endif
all:
- @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) clean all;)
+ifeq ($(OBJDIR),)
+ @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -C $(PROJECT) clean all;)
+endif
%:
%:
- @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -
s -
C $(PROJECT) $@;)
+ @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -C $(PROJECT) $@;)