wmppp.app: Use rm -f for make clean
This patch prevents "make clean" from failing when the source tree is already clean.
This commit is contained in:
parent
ae3f75c09e
commit
33d2784d26
1 changed files with 2 additions and 2 deletions
|
@ -16,9 +16,9 @@ all:: wmppp getmodemspeed
|
||||||
|
|
||||||
clean::
|
clean::
|
||||||
for i in $(OBJS) ; do \
|
for i in $(OBJS) ; do \
|
||||||
rm $$i; \
|
rm -f $$i; \
|
||||||
done
|
done
|
||||||
rm wmppp getmodemspeed
|
rm -f wmppp getmodemspeed
|
||||||
|
|
||||||
install::
|
install::
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue