From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 2397F4D31E for ; Fri, 16 May 2025 23:02:32 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 155A968D482; Sat, 17 May 2025 02:02:18 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 1C54A68D450 for ; Sat, 17 May 2025 02:02:11 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 830012819101C; Sat, 17 May 2025 01:02:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1747436530; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/DKcek/ATPTR1AMg+7a21/SFY/ah89H93UxdzQGGImI=; b=HLcDUt+JTrnDVhnZcfFlUHkKWSGgyJX/fpo6ipyr8w5ZMVOFOcjEptr0qWvHpP2+U2tmzr UylCbbJ9sccKNGEzGhxhK1AX6AubkxQJ0I9JZ+ZMNdq9s+9Ua/ThngB8m9S8IHISk54L3y NkYTM/B3WqxBZnVFZwjR8g3lTiklZP6vSByuarpIx/gc1EmxZ4BtTMfp7J6ufAbKlu2lwb id0XKSg2jzTHWiE60LxyfTMdv28K+WCL1PvOY1eRcajFxAYcXyno+1LMlEc/mh9io3Nrau igGF5A3/V849SPFsraMi8XdihpwJRM+uADvx/lDuVDPLkdKjVWjOX+YGi490RQ== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Sat, 17 May 2025 01:01:34 +0200 Message-ID: <20250516230202.355445-2-timo@rothenpieler.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250516230202.355445-1-timo@rothenpieler.org> References: <20250516230202.355445-1-timo@rothenpieler.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 2/3] ffbuild: correctly silence and tag new css/html steps X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Timo Rothenpieler Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- ffbuild/common.mak | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ffbuild/common.mak b/ffbuild/common.mak index 4a3cc0c748..31ed19c141 100644 --- a/ffbuild/common.mak +++ b/ffbuild/common.mak @@ -140,9 +140,9 @@ else endif # 1) Preprocess CSS to a minified version +%.css.min: TAG = SED %.css.min: %.css - # Must start with a tab in the real Makefile - sed 's!/\\*.*\\*/!!g' $< \ + $(M)sed 's!/\\*.*\\*/!!g' $< \ | tr '\n' ' ' \ | tr -s ' ' \ | sed 's/^ //; s/ $$//' \ @@ -151,6 +151,7 @@ endif ifdef CONFIG_RESOURCE_COMPRESSION # 2) Gzip the minified CSS +%.css.min.gz: TAG = GZIP %.css.min.gz: %.css.min $(M)gzip -nc9 $< > $@ @@ -159,6 +160,7 @@ ifdef CONFIG_RESOURCE_COMPRESSION $(BIN2C) $< $@ $(subst .,_,$(basename $(notdir $@))) # 4) Gzip the HTML file (no minification needed) +%.html.gz: TAG = GZIP %.html.gz: %.html $(M)gzip -nc9 $< > $@ -- 2.49.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".