Add Missing Cleanup to Makefile

The Makefile builds object files in src/ and src/intern_blks/,
however the clean target only deleted object files inside src/

Now the clean target deletes object files in src/, src/intern_blks/
and the program itself
This commit is contained in:
Jack Henschel 2016-06-21 23:23:24 +02:00
parent b583b3417c
commit 37144834e7

View file

@ -25,6 +25,6 @@ uninstall:
rm -f "$(DESTDIR)$(BINPREFIX)/$(PROGRAM)"
rm -f "$(DESTDIR)$(MANPREFIX)"/man1/yabar.1
clean:
rm -f src/*.o $(PROGRAM)
rm -f src/*.o src/intern_blks/*.o $(PROGRAM)
.PHONY: all install uninstall clean