Makefile: distclean: do not try to rm awesome (#2077)

Follow-up to ec51e3f93, where we stopped creating the symlink.

[ci skip]
This commit is contained in:
Daniel Hahler 2017-10-23 22:25:18 +02:00 committed by GitHub
parent 1ca3fff86c
commit e9b5e28d15

View file

@ -32,8 +32,7 @@ install:
distclean:
$(ECHO) -n "Cleaning up build directory…"
$(RM) -r $(BUILDDIR) $(TARGETS)
$(ECHO) " done"
$(RM) -r $(BUILDDIR)
# Use an explicit rule to not "update" the Makefile via the implicit rule below.
Makefile: ;