Update.
[glibc.git] / sysdeps / mach / hurd / Makefile
blobbf1c3b02bc51c0cedc4b4c18060c43cf9bec7219
1 # Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public License
6 # as published by the Free Software Foundation; either version 2 of
7 # the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
19 ifdef in-Makerules
21 subdirs := $(filter-out sunrpc,$(subdirs)) # XXX skip broken dirs
22 # See hurd/Makefile for commands that install some crucial sunrpc headers.
24 # Look for header files in hurd/ under the top-level library source directory.
25 # Look for generated header files where they get created.
26 includes += -I$(..)hurd -I$(common-objpfx)hurd/
28 # Do not use any assembly code from sysdeps/unix (and subdirectories).
29 # This bypasses all the system call stubs and uses any existing posix or
30 # generic C files instead.
31 inhibit-sysdep-asm += unix*
32 inhibit-unix-syscalls = yes
34 # Don't try to generate anything from the installed Unix system and its
35 # libraries. That is only of use when building for a Unix system, so as to
36 # be compatible with some existing binaries for that system.
37 inhibit-glue = yes
39 ifeq (,$(filter mach hurd,$(subdir)))
40 # Subdirectories other than hurd/ might use the generated Hurd headers.
41 # So make sure we get a chance to run in hurd/ to make them before all else.
42 # (But we don't want to do this in mach/, because hurd/ needs some things
43 # there, and we know mach/ doesn't need anything from hurd/.)
45 hurd-objpfx = $(common-objpfx)hurd/
47 # These are all the generated headers that <hurd.h> includes.
48 before-compile += $(patsubst %,$(hurd-objpfx)hurd/%.h,auth io fs process)
49 $(patsubst %,$(hurd-objpfx)hurd/%.%,auth io fs process):
50 $(MAKE) -C $(..)hurd generated no_deps=t
51 endif
53 # Hurd profil.c includes this file, so give a rule to make it.
54 ifeq ($(subdir),gmon)
55 $(common-objpfx)hurd/../mach/RPC_task_get_sampled_pcs.c:
56 $(MAKE) -C $(..)mach generated no_deps=t
57 endif
60 # Generate errnos.h from the section of the manual that lists all the errno
61 # codes.
63 errno.texinfo = $(..)manual/errno.texi
65 hurd = $(..)sysdeps/mach/hurd
67 define mach-errno-h
68 ($(foreach h,mach/message.h \
69 mach/kern_return.h \
70 mach/mig_errors.h \
71 device/device_types.h,\
72 echo '#include <$h>';\
74 endef
76 # We use the compiler to generate a list of absolute file names for
77 # the headers we want to search for Mach error codes, listed above (and
78 # incidentally, all other headers those include).
79 -include $(common-objpfx)errnos.d
80 $(common-objpfx)errnos.d: $(mach-errnos-deps)
81 $(mach-errno-h) | \
82 $(CC) $(CPPFLAGS) -M -x c - | \
83 sed $(sed-remove-objpfx) -e 's,- *:,mach-errnos-deps :=,' \
84 -e 's,\.\./,$(..),g' > $@t
85 mv -f $@t $@
87 $(hurd)/errnos.h: $(common-objpfx)stamp-errnos ;
88 $(common-objpfx)stamp-errnos: $(hurd)/errnos.awk $(errno.texinfo) \
89 $(mach-errnos-deps)
90 gawk -f $^ > $(hurd)/errnos.h-tmp
91 # Make it unwritable so noone will edit it by mistake.
92 -chmod a-w $(hurd)/errnos.h-tmp
93 ./$(..)move-if-change $(hurd)/errnos.h-tmp $(hurd)/errnos.h
94 test ! -d CVS || \
95 (cd $(hurd); cvs commit -m'Regenerated from $^' errnos.h)
96 touch $@
98 common-generated += errnos.d stamp-errnos
100 # We install the real libc.a as libcrt.a and as libc.a we install a linker
101 # script which does -( -lcrt -lmachuser -lhurduser -).
103 libc-name = crt
105 ifeq (,$(subdir))
106 install-others += $(inst_libdir)/libc.a $(inst_libdir)/libc_p.a
107 $(inst_libdir)/libc.a: $(hurd)/libc-ldscript; $(do-install)
108 $(inst_libdir)/libc_p.a: $(hurd)/libc_p-ldscript; $(do-install)
109 endif
111 # Make sure these are used to build the libc.so shared object too.
112 rpcuserlibs := $(common-objpfx)mach/libmachuser.so \
113 $(common-objpfx)hurd/libhurduser.so
114 $(common-objpfx)libc.so: $(rpcuserlibs)
115 rpath-link := $(rpath-link):$(common-objpfx)mach:$(common-objpfx)hurd
117 # And get them into the libc.so ldscript.
118 $(inst_libdir)/libc.so: $(rpcuserlibs)
120 # The RPC stubs from these libraries are needed in building the dynamic
121 # linker, too. It must be self-contained, so we link the needed PIC
122 # objects directly into the shared object.
123 ifeq (elf,$(subdir))
124 $(objpfx)librtld.so: $(rpcuserlibs:.so=_pic.a)
125 endif
128 endif # in-Makerules