handle -s correctly when using these makefiles directly

This commit is contained in:
mrdudz
2025-06-29 22:48:03 +02:00
parent 831eedfb58
commit cb4cd114bf
15 changed files with 61 additions and 3 deletions

View File

@@ -20,6 +20,9 @@ else
RMDIR = $(RM) -r $1
endif
ifeq ($(SILENT),s)
QUIET = 1
endif
ifdef QUIET
.SILENT:

View File

@@ -24,6 +24,10 @@ else
RMDIR = $(RM) -r $1
endif
ifeq ($(SILENT),s)
QUIET = 1
endif
ifdef QUIET
.SILENT:
NULLOUT = >$(NULLDEV)

View File

@@ -28,6 +28,10 @@ else
NULLDEV = /dev/null
endif
ifeq ($(SILENT),s)
QUIET = 1
endif
ifdef QUIET
.SILENT:
NULLOUT = >$(NULLDEV)

View File

@@ -26,6 +26,10 @@ else
RMDIR = $(RM) -r $1
endif
ifeq ($(SILENT),s)
QUIET = 1
endif
ifdef QUIET
.SILENT:
NULLOUT = >$(NULLDEV)

View File

@@ -20,6 +20,10 @@ else
RMDIR = $(RM) -r $1
endif
ifeq ($(SILENT),s)
QUIET = 1
endif
ifdef QUIET
.SILENT:
NULLOUT = >$(NULLDEV)

View File

@@ -22,6 +22,10 @@ else
RMDIR = $(RM) -r $1
endif
ifeq ($(SILENT),s)
QUIET = 1
endif
ifdef QUIET
.SILENT:
NULLOUT = >$(NULLDEV)