summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2010-05-30 22:35:14 +0000
committerhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2010-05-30 22:35:14 +0000
commit31f96cb0e3fb58c676eb92a730d2cac71c1d9969 (patch)
treed17bac7a7f27d6f4216d8e0281f06f50cbbf82c6 /Makefile
parent39e986829385719581b6bb42afd31ce1ce6a6e8b (diff)
downloadflashrom-31f96cb0e3fb58c676eb92a730d2cac71c1d9969.tar.gz
Add flashrom.exe unconditionally to the list of files removed at make
clean. This allows users to run make clean without specifying the target architecture. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Idwer Vollering <vidwer@gmail.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1022 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 59fd686..7bc5509 100644
--- a/Makefile
+++ b/Makefile
@@ -255,8 +255,10 @@ TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --
%.o: %.c .features
$(CC) $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
+# Make sure to add all names of generated binaries here.
+# This includes all frontends and libflashrom.
clean:
- rm -f $(PROGRAM) *.o
+ rm -f $(PROGRAM) $(PROGRAM).exe *.o
distclean: clean
rm -f .dependencies .features .libdeps