diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2010-05-30 22:35:14 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2010-05-30 22:35:14 +0000 |
commit | a0020df6309e4536fcb97bd93bc46e2068f0ffe8 (patch) | |
tree | d17bac7a7f27d6f4216d8e0281f06f50cbbf82c6 /Makefile | |
parent | 831e8f4abb29f1ff66ebb8ab5ff496050ff677f7 (diff) | |
download | flashrom-a0020df6309e4536fcb97bd93bc46e2068f0ffe8.tar.gz flashrom-a0020df6309e4536fcb97bd93bc46e2068f0ffe8.tar.bz2 flashrom-a0020df6309e4536fcb97bd93bc46e2068f0ffe8.zip |
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.
Corresponding to flashrom svn r1022.
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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |