Make sure src/Makefile cleans up all executable files when

parent makefile calles "make clean".
This commit is contained in:
Jesse Smith
2019-09-11 14:42:20 -03:00
parent 06d9afaa87
commit 13cb3665b1
2 changed files with 6 additions and 4 deletions

View File

@@ -181,8 +181,7 @@ consoles.o: consoles.c consoles.h
cleanobjs:
rm -f *.o *.bak
clean: cleanobjs
@echo Type \"make clobber\" to really clean up.
clean: cleanobjs clobber
clobber: cleanobjs
rm -f $(BIN) $(SBIN) $(USRBIN)