From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2191) id E73393858C5E; Sun, 25 Feb 2024 18:42:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E73393858C5E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1708886542; bh=eMXTeplzXI9EDXxLYAO7SHAuMuu1Y9+sWExcgpFlYoA=; h=From:To:Subject:Date:From; b=pOSQ1nw2AWeP7H9wlONp1gzeAw8ValcxVRwl9aVTZnEeCYEfKSAQrKlh90Fe2mwb5 BbcRFs7E14yxOZh+jHREm3vzxuCGzc6al2AeF0YnkaS2J9XhIFWInEv2OO5dHB2S4A 68nJqtZ1RAxsGbRijF16tUT7tG53oNNwuomUP6H0= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Carlos O'Donell To: glibc-cvs@sourceware.org Subject: [glibc] ctype: Reformat Makefile. X-Act-Checkin: glibc X-Git-Author: Carlos O'Donell X-Git-Refname: refs/heads/master X-Git-Oldrev: d88fcccb1a07d071d366d352e126c98c72380660 X-Git-Newrev: 12956e0a330e3d90fc196f7d7a047ce613f78920 Message-Id: <20240225184222.E73393858C5E@sourceware.org> Date: Sun, 25 Feb 2024 18:42:22 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=12956e0a330e3d90fc196f7d7a047ce613f78920 commit 12956e0a330e3d90fc196f7d7a047ce613f78920 Author: Carlos O'Donell Date: Thu Jun 8 06:43:44 2023 -0400 ctype: Reformat Makefile. Reflow and sort Makefile. Code generation changes present due to link order changes. No regressions on x86_64 and i686. Diff: --- ctype/Makefile | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/ctype/Makefile b/ctype/Makefile index 717d020129..3e09938bd1 100644 --- a/ctype/Makefile +++ b/ctype/Makefile @@ -24,9 +24,18 @@ include ../Makeconfig headers := ctype.h -routines := ctype ctype-c99 ctype-extn ctype-c99_l ctype_l isctype -aux := ctype-info - -tests := test_ctype +routines := \ + ctype \ + ctype-c99 \ + ctype-c99_l \ + ctype-extn \ + ctype_l \ + isctype \ + # routines +aux := ctype-info + +tests := \ + test_ctype \ + # tests include ../Rules