From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2191) id C70763858C78; Sun, 25 Feb 2024 18:42:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C70763858C78 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1708886550; bh=DHkXk0k2CEg1HntmfW42eJtwjFtJBNJm1tkfRVNe6XU=; h=From:To:Subject:Date:From; b=CBGCQUabxcCHMl9TDkuxXu+TPAVUNhopJtD+GZYpPo17oOrLvC1xLGQMiyc8YVXrH wYyL3j4jd2ZL/LbXLnDATagXtEmBFNe0V6ZnfKcintxkxfY58ESEl1ofMBnbd2x9pL iWdvOewFg1z6mVnR+K+lyfNhKhxBBffmAVx5OThM= 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] dirent: Reformat Makefile. X-Act-Checkin: glibc X-Git-Author: Carlos O'Donell X-Git-Refname: refs/heads/master X-Git-Oldrev: 12956e0a330e3d90fc196f7d7a047ce613f78920 X-Git-Newrev: a4a12af5abe22d63fbebf0a219d8d13eff6db20c Message-Id: <20240225184230.C70763858C78@sourceware.org> Date: Sun, 25 Feb 2024 18:42:28 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=a4a12af5abe22d63fbebf0a219d8d13eff6db20c commit a4a12af5abe22d63fbebf0a219d8d13eff6db20c Author: Carlos O'Donell Date: Thu Jun 8 07:30:33 2023 -0400 dirent: Reformat Makefile. Reflow and sort Makefile. Code generation changes present due to link order changes. No regressions on x86_64 and i686. Diff: --- dirent/Makefile | 52 ++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 42 insertions(+), 10 deletions(-) diff --git a/dirent/Makefile b/dirent/Makefile index 92587cab9a..556f759f65 100644 --- a/dirent/Makefile +++ b/dirent/Makefile @@ -22,16 +22,48 @@ subdir := dirent include ../Makeconfig -headers := dirent.h bits/dirent.h bits/dirent_ext.h -routines := opendir closedir readdir readdir_r rewinddir \ - seekdir telldir scandir alphasort versionsort \ - getdents getdents64 dirfd readdir64 readdir64_r scandir64 \ - alphasort64 versionsort64 fdopendir \ - scandirat scandirat64 \ - scandir-cancel scandir-tail scandir64-tail - -tests := list tst-seekdir opendir-tst1 bug-readdir1 tst-fdopendir \ - tst-fdopendir2 tst-scandir tst-scandir64 +headers := \ + bits/dirent.h \ + bits/dirent_ext.h \ + dirent.h \ + # headers +routines := \ + alphasort \ + alphasort64 \ + closedir \ + dirfd \ + fdopendir \ + getdents \ + getdents64 \ + opendir \ + readdir \ + readdir64 \ + readdir64_r \ + readdir_r \ + rewinddir \ + scandir \ + scandir-cancel \ + scandir-tail \ + scandir64 \ + scandir64-tail \ + scandirat \ + scandirat64 \ + seekdir \ + telldir \ + versionsort \ + versionsort64 \ + # routines + +tests := \ + bug-readdir1 \ + list \ + opendir-tst1 \ + tst-fdopendir \ + tst-fdopendir2 \ + tst-scandir \ + tst-scandir64 \ + tst-seekdir \ + # tests CFLAGS-scandir.c += $(uses-callbacks) CFLAGS-scandir64.c += $(uses-callbacks)