diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-11-08 13:49:48 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2024-08-07 11:02:03 -0300 |
commit | be3e28545f7ad8bd1526c7d221f76f254cb85e67 (patch) | |
tree | 7af2be55767d66903cf4f6a15b3c0a074bb8beee | |
parent | 79e472f0f8922347d81ba47394b6648030e460e1 (diff) | |
download | glibc-be3e28545f7ad8bd1526c7d221f76f254cb85e67.tar.gz glibc-be3e28545f7ad8bd1526c7d221f76f254cb85e67.tar.xz glibc-be3e28545f7ad8bd1526c7d221f76f254cb85e67.zip |
login: Re-flow and sort multiline Makefile definitions
-rw-r--r-- | login/Makefile | 64 |
1 files changed, 53 insertions, 11 deletions
diff --git a/login/Makefile b/login/Makefile index 84563230ef..679a69e4d9 100644 --- a/login/Makefile +++ b/login/Makefile @@ -23,29 +23,71 @@ subdir := login include ../Makeconfig -headers := utmp.h bits/utmp.h lastlog.h pty.h - -routines := getlogin getlogin_r setlogin getlogin_r_chk \ - getutent getutent_r getutid getutline getutid_r getutline_r \ - utmp_file utmpname updwtmp getpt grantpt unlockpt ptsname \ - ptsname_r_chk login login_tty logout logwtmp openpty forkpty +headers := \ + bits/utmp.h \ + lastlog.h \ + pty.h \ + utmp.h \ + # headers + +routines := \ + forkpty \ + getlogin \ + getlogin_r \ + getlogin_r_chk \ + getpt \ + getutent \ + getutent_r \ + getutid \ + getutid_r \ + getutline \ + getutline_r \ + grantpt \ + login \ + login_tty \ + logout \ + logwtmp \ + openpty \ + ptsname \ + ptsname_r_chk \ + setlogin \ + unlockpt \ + updwtmp \ + utmp_file \ + utmpname \ + # routines CFLAGS-grantpt.c += -DLIBEXECDIR='"$(libexecdir)"' others = utmpdump ifeq (yes,$(build-pt-chown)) -others += pt_chown -others-pie = pt_chown +others += \ + pt_chown \ + # others +others-pie = \ + pt_chown \ + # others-pie install-others-programs = $(inst_libexecdir)/pt_chown endif subdir-dirs = programs vpath %.c programs -tests := tst-utmp tst-utmpx tst-grantpt tst-ptsname tst-getlogin tst-updwtmpx \ - tst-pututxline-lockfail tst-pututxline-cache tst-utmp-size tst-utmp-size-64 \ - tst-utmp-unsigned tst-utmp-unsigned-64 +tests := \ + tst-getlogin \ + tst-grantpt \ + tst-ptsname \ + tst-pututxline-cache \ + tst-pututxline-lockfail \ + tst-updwtmpx \ + tst-utmp \ + tst-utmp-size \ + tst-utmp-size-64 \ + tst-utmp-unsigned \ + tst-utmp-unsigned-64 \ + tst-utmpx \ + # tests CFLAGS-tst-utmp-size-64.c += -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 CFLAGS-tst-utmp-unsigned-64.c += -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 |