summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index 0e9c86bd78..a95481cb3f 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -49,8 +49,8 @@ $(OBJDIR)/%.o: %.c
49 $(CC) $(CFLAGS) -c $< -o $@ 49 $(CC) $(CFLAGS) -c $< -o $@
50 50
51clean: 51clean:
52 -$(RM) -f $(OBJDIR)/$(OBJS) *~ $(OUTPUT) 52 rm -f $(OBJS) $(OUTPUT)
53 -$(RM) -r $(DEPS) 53 rm -rf $(OBJDIR)/$(DEPS)
54 54
55# Special targets 55# Special targets
56$(OBJDIR)/thread.o: thread.c thread.h 56$(OBJDIR)/thread.o: thread.c thread.h