Update.
[glibc.git] / sysdeps / unix / sysv / linux / Makefile
blobfe357bcb0579b80592ced2cdaaa727df1770f334
1 ifeq ($(subdir),csu)
2 CFLAGS-init-first.c = -fkeep-inline-functions
4 sysdep_routines += errno-loc
5 endif
7 ifeq ($(subdir),db2)
8 CPPFLAGS += -DHAVE_LLSEEK=1
9 endif
11 ifeq ($(subdir),misc)
12 sysdep_routines += sysctl clone llseek getresuid getresgid umount umount2
14 sysdep_headers += sys/mount.h sys/acct.h sys/sysctl.h sys/mtio.h \
15 sys/io.h sys/klog.h sys/kdaemon.h \
16 sys/user.h sys/sysmacros.h sys/procfs.h sys/prctl.h \
17 sys/kd.h sys/soundcard.h sys/vt.h \
18 sys/quota.h sys/fsuid.h \
19 scsi/sg.h scsi/scsi.h sys/pci.h sys/ultrasound.h \
20 sys/sendfile.h
22 install-others += $(inst_includedir)/bits/syscall.h
24 # Generate the list of SYS_* macros for the system calls (__NR_* macros).
25 $(objpfx)syscall-%.h $(objpfx)syscall-%.d: ../sysdeps/unix/sysv/linux/sys/syscall.h
26 rm -f $(@:.h=.d)
27 { \
28 echo '/* Generated at libc build time from kernel syscall list. */';\
29 echo ''; \
30 echo '#ifndef _SYSCALL_H'; \
31 echo '# error "Never use <bits/syscall.h> directly; include <sys/syscall.h> instead."'; \
32 echo '#endif'; \
33 echo ''; \
34 SUNPRO_DEPENDENCIES='$(@:.h=.d) $(patsubst $(objpfx)%,$$(objpfx)%,\
35 $(@:.d=.h) $(@:.h=.d))' \
36 $(CC) -E -x c $< -D_LIBC -dM | \
37 sed -n 's@^#define __NR_\([^ ]*\) .*$$@#define SYS_\1 __NR_\1@p'; \
38 } > $(@:.d=.h).new
39 mv -f $(@:.d=.h).new $(@:.d=.h)
41 $(inst_includedir)/bits/syscall.h: $(objpfx)syscall-list.h $(+force)
42 $(make-target-directory)
43 if test -r $@ && cmp -s $< $@; \
44 then echo 'bits/syscall.h unchanged'; \
45 else $(INSTALL_DATA) $< $@; fi
47 ifndef no_deps
48 # Get the generated list of dependencies (probably /usr/include/asm/unistd.h).
49 -include $(objpfx)syscall-list.d
50 endif
51 generated += syscall-list.h syscall-list.d
52 endif
54 ifeq ($(subdir),time)
55 sysdep_headers += sys/timex.h
56 endif
58 ifeq ($(subdir),socket)
59 sysdep_headers += net/if.h net/if_ppp.h net/ppp-comp.h \
60 net/ppp_defs.h net/if_arp.h net/route.h net/ethernet.h \
61 net/if_slip.h net/if_packet.h net/if_shaper.h
62 sysdep_routines += cmsg_nxthdr sa_len
63 endif
65 ifeq ($(subdir),sunrpc)
66 sysdep_headers += nfs/nfs.h
67 endif
69 ifeq ($(subdir),termios)
70 sysdep_headers += termio.h
71 endif
73 ifeq ($(subdir),stdio-common)
74 # Just disable the auto generation in sysdeps/generic
75 inhibit-siglist := yes
76 endif
78 ifeq ($(subdir),posix)
79 sysdep_headers += bits/pthreadtypes.h
80 endif
82 ifeq ($(subdir),inet)
83 sysdep_headers += sys/socketvar.h netinet/in_systm.h netinet/ip_fw.h \
84 netinet/if_fddi.h netinet/if_tr.h netinet/igmp.h \
85 netipx/ipx.h netash/ash.h netax25/ax25.h netatalk/at.h \
86 netrom/netrom.h netpacket/packet.h netrose/rose.h \
87 neteconet/ec.h
88 endif
90 # Don't compile the ctype glue code, since there is no old non-GNU C library.
91 inhibit-glue = yes
93 ifeq ($(subdir),dirent)
94 sysdep_routines += getdents64
95 endif
97 ifeq ($(subdir),nis)
98 CFLAGS-ypclnt.c = -DUSE_BINDINGDIR=1
99 endif