mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-20 17:51:16 +00:00
8942a07afc
* sysdeps/unix/sysv/linux/Dist: Add it. * sysdeps/unix/sysv/linux/Makefile [$(subdir)=socket] (headers): Add net/if.h. * Makeconfig (link-libc): Add libc.a after libc.so in link. * Rules (static-only-routines rule): Use empty.o instead of dummy.o. (empty.o): New target. (generated): Add empty.c, empty.o.
40 lines
796 B
Makefile
40 lines
796 B
Makefile
ifeq ($(subdir), math)
|
|
sysdep_routines += setfpucw
|
|
extra-objs += ieee-fpucw.o
|
|
headers += fpu_control.h
|
|
install-lib += libieee.a
|
|
non-lib.a += libieee.a
|
|
|
|
$(objpfx)libieee.a: $(objpfx)ieee-fpucw.o
|
|
rm -f $@
|
|
ln $< $@
|
|
endif
|
|
|
|
ifeq ($(subdir), io)
|
|
sysdep_routines += fxstat lxstat xstat
|
|
endif
|
|
|
|
ifeq ($(subdir), misc)
|
|
sysdep_routines += mount umount xmknod s_ptrace s_sysctl sysctl llseek \
|
|
setfsgid setfsuid sysinfo uselib
|
|
headers += sys/mount.h sys/sysinfo.h
|
|
endif
|
|
|
|
ifeq ($(subdir), time)
|
|
sysdep_routines += adjtimex
|
|
headers += sys/timex.h
|
|
endif
|
|
|
|
ifeq ($(subdir), socket)
|
|
headers += sys/socketcall.h net/if.h
|
|
endif
|
|
|
|
ifeq ($(subdir), sunrpc)
|
|
headers += nfs/nfs.h
|
|
endif
|
|
|
|
rtld-installed-name = ld-gnu.so.1
|
|
|
|
# Don't compile the ctype glue code, since there is no old non-GNU C library.
|
|
inhibit-glue = yes
|