Added a distclean target.

This commit is contained in:
Fernando Tarlá Cardoso Lemos 2010-10-24 01:29:54 -02:00 committed by Axel Wagner
parent 80172c88c5
commit 73728f519b
2 changed files with 8 additions and 2 deletions

View File

@ -27,7 +27,11 @@ install: all
$(INSTALL) -m 0755 i3bar $(DESTDIR)$(PREFIX)/bin
clean:
rm src/*.o
rm -f src/*.o
make -C doc clean
.PHONY: install clean doc
distclean: clean
rm -f i3bar
make -C doc distclean
.PHONY: install clean distclean doc

View File

@ -5,3 +5,5 @@ i3bar.1: i3bar.man
a2x -f manpage i3bar.man
clean:
rm -f i3bar.xml i3bar.1 i3bar.html
distclean: clean