aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel/MIDIHost/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-09-15 03:00:29 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-09-15 03:00:29 +0000
commit6d2f091cec6ef71b65658301630acfb1b615a278 (patch)
treed183c03a14d14a40f8cad9907668723570686335 /Demos/Host/LowLevel/MIDIHost/makefile
parenta0f9192568b384af605487ae6a043b684016bfff (diff)
downloadlufa-6d2f091cec6ef71b65658301630acfb1b615a278.tar.gz
lufa-6d2f091cec6ef71b65658301630acfb1b615a278.tar.bz2
lufa-6d2f091cec6ef71b65658301630acfb1b615a278.zip
Make project makefiles correctly clean intermeditary build files from assembly and C++ sources (thanks to Daniel Czigany).
Diffstat (limited to 'Demos/Host/LowLevel/MIDIHost/makefile')
-rw-r--r--Demos/Host/LowLevel/MIDIHost/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Host/LowLevel/MIDIHost/makefile b/Demos/Host/LowLevel/MIDIHost/makefile
index ca8f99332..eb040d06e 100644
--- a/Demos/Host/LowLevel/MIDIHost/makefile
+++ b/Demos/Host/LowLevel/MIDIHost/makefile
@@ -681,8 +681,8 @@ clean_list :
$(REMOVE) $(TARGET).map
$(REMOVE) $(TARGET).sym
$(REMOVE) $(TARGET).lss
- $(REMOVE) $(SRC:%.c=$(OBJDIR)/%.o)
- $(REMOVE) $(SRC:%.c=$(OBJDIR)/%.lst)
+ $(REMOVE) $(SRC:%.c=$(OBJDIR)/%.o) $(CPPSRC:%.cpp=$(OBJDIR)/%.o) $(ASRC:%.S=$(OBJDIR)/%.o)
+ $(REMOVE) $(SRC:%.c=$(OBJDIR)/%.lst) $(CPPSRC:%.cpp=$(OBJDIR)/%.lst) $(ASRC:%.S=$(OBJDIR)/%.lst)
$(REMOVE) $(SRC:.c=.s)
$(REMOVE) $(SRC:.c=.d)
$(REMOVE) $(SRC:.c=.i)