summaryrefslogtreecommitdiff
path: root/util/ectool
diff options
context:
space:
mode:
Diffstat (limited to 'util/ectool')
-rw-r--r--util/ectool/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/ectool/Makefile b/util/ectool/Makefile
index 3ab0bc8638..6225503fda 100644
--- a/util/ectool/Makefile
+++ b/util/ectool/Makefile
@@ -38,7 +38,11 @@ install: $(PROGRAM)
$(INSTALL) $(PROGRAM) $(PREFIX)/sbin
clean:
- rm *.o $(PROGRAM)
+ rm -f *.o $(PROGRAM) junit.xml
+
+distclean: clean
%.o: %.c
$(CC) $(CFLAGS) -c $^ -I. -o $@
+
+.PHONY: all install clean distclean