add quiet options

This commit is contained in:
2025-11-04 21:34:45 -05:00
parent 6321579321
commit e48b9094e6
4 changed files with 38 additions and 23 deletions

View File

@@ -45,20 +45,20 @@ install: $(BIN)
endif
doc:
$(MAKE) -C doc all
@$(MAKE) -C doc all
uninstall:
$(RM) $(PREFIX)$(PACKAGE)
@$(RM) $(PREFIX)$(PACKAGE)
clean:
$(RM) -r bin
$(RM) -r build
$(MAKE) -C doc clean
@echo " CLEAN"
@$(RM) -r bin
@$(RM) -r build
@$(MAKE) -C doc clean --no-print-directory
distclean: clean
$(RM) config.mak config.status
$(RM) $(TARBALL)
$(MAKE) -C doc clean
@$(RM) config.mak config.status
@$(RM) $(TARBALL)
release: distclean all
tar -czf $(TARBALL) $(RELEASE_FILES)