mirror of
https://github.com/vale981/yabar
synced 2025-03-05 09:31:39 -05:00
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:
parent
b583b3417c
commit
37144834e7
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue