Commit a0020df6 authored by Carl-Daniel Hailfinger's avatar Carl-Daniel Hailfinger
Browse files

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: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: default avatarIdwer Vollering <vidwer@gmail.com>
Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
parent 831e8f4a
...@@ -255,8 +255,10 @@ TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root -- ...@@ -255,8 +255,10 @@ TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --
%.o: %.c .features %.o: %.c .features
$(CC) $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $< $(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: clean:
rm -f $(PROGRAM) *.o rm -f $(PROGRAM) $(PROGRAM).exe *.o
distclean: clean distclean: clean
rm -f .dependencies .features .libdeps rm -f .dependencies .features .libdeps
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment