mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-30 06:21:07 +00:00
57aefafe56
the list. * time/northamerica: Corrections to Canada data from ADO 95i. * sysdeps/unix/sysv/linux/Makefile (headers): Don't append to this unconditionally. In socket subdir, append sys/socketcall.h; in time subdir, append sys/timex.h. (config-LDFLAGS): New variable. * sysdeps/unix/sysv/linux/Dist: New file. * Makeconfig (+link): Pass $(config-LDFLAGS) before $(LDFLAGS).
27 lines
531 B
Makefile
27 lines
531 B
Makefile
ifeq ($(subdir), io)
|
|
sysdep_routines := $(sysdep_routines) fxstat lxstat xstat
|
|
endif
|
|
|
|
ifeq ($(subdir), misc)
|
|
sysdep_routines := $(sysdep_routines) xmknod
|
|
endif
|
|
|
|
#ifeq ($(subdir), posix)
|
|
#sysdep_routines := $(sysdep_routines) setpgrp
|
|
#endif
|
|
|
|
ifeq ($(subdir), time)
|
|
sysdep_routines := $(sysdep_routines) adjtimex
|
|
headers += sys/timex.h
|
|
endif
|
|
|
|
ifeq ($(subdir), sysvipc)
|
|
sysdep_routines := $(sysdep_routines) ipc
|
|
endif
|
|
|
|
ifeq ($(subdir), socket)
|
|
headers += sys/socketcall.h
|
|
endif
|
|
|
|
config-LDFLAGS = -Wl,-dynamic-linker=/lib/ld-gnu.so.1
|