update from main archive 970121
[glibc.git] / sysdeps / mach / hurd / Makefile
blob618ad1d3e43e0fb93fbb03f49c8fa3a66efead64
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
40 ifeq (,$(filter mach hurd,$(subdir)))
41 # Subdirectories other than hurd/ might use the generated Hurd headers.
42 # So make sure we get a chance to run in hurd/ to make them before all else.
43 # (But we don't want to do this in mach/, because hurd/ needs some things
44 # there, and we know mach/ doesn't need anything from hurd/.)
46 hurd-objpfx = $(common-objpfx)hurd/
48 # These are all the generated headers that <hurd.h> includes.
49 before-compile += $(patsubst %,$(hurd-objpfx)hurd/%.h,auth io fs process)
50 $(patsubst %,$(hurd-objpfx)hurd/%.%,auth io fs process):
51 $(MAKE) -C $(..)hurd generated no_deps=t
52 endif
55 # Generate errnos.h from the section of the manual that lists all the errno
56 # codes.
58 errno.texinfo = $(..)manual/errno.texi
60 hurd = $(..)sysdeps/mach/hurd
62 define mach-errno-h
63 ($(foreach h,mach/message.h \
64 mach/kern_return.h \
65 mach/mig_errors.h \
66 device/device_types.h,\
67 echo '#include <$h>';\
69 endef
71 # We use the compiler to generate a list of absolute file names for
72 # the headers we want to search for Mach error codes, listed above (and
73 # incidentally, all other headers those include).
74 -include $(common-objpfx)errnos.d
75 $(common-objpfx)errnos.d: $(mach-errnos-deps)
76 $(mach-errno-h) | \
77 $(CC) $(CPPFLAGS) -M -x c - | \
78 sed $(sed-remove-objpfx) -e 's,- *:,mach-errnos-deps :=,' \
79 -e 's,\.\./,$(..),g' > $@t
80 mv -f $@t $@
82 $(hurd)/errnos.h: $(common-objpfx)stamp-errnos ;
83 $(common-objpfx)stamp-errnos: $(hurd)/errnos.awk $(errno.texinfo) \
84 $(mach-errnos-deps)
85 gawk -f $^ > $(hurd)/errnos.h-tmp
86 # Make it unwritable so noone will edit it by mistake.
87 -chmod a-w $(hurd)/errnos.h-tmp
88 ./$(..)move-if-change $(hurd)/errnos.h-tmp $(hurd)/errnos.h
89 test ! -d CVS || \
90 (cd $(hurd); cvs commit -m'Regenerated from $^' errnos.h)
91 touch $@
93 common-generated += errnos.d stamp-errnos
95 # We install the real libc.a as libcrt.a and as libc.a we install a linker
96 # script which does -( -lcrt -lmachuser -lhurduser -).
98 libc-name = crt
100 ifeq (,$(subdir))
101 install-others += $(inst_libdir)/libc.a $(inst_libdir)/libc_p.a
102 $(inst_libdir)/libc.a: $(hurd)/libc-ldscript; $(do-install)
103 $(inst_libdir)/libc_p.a: $(hurd)/libc_p-ldscript; $(do-install)
104 endif
106 # Make sure these are used to build the libc.so shared object too.
107 rpcuserlibs := $(common-objpfx)mach/libmachuser.so \
108 $(common-objpfx)hurd/libhurduser.so
109 $(common-objpfx)libc.so: $(rpcuserlibs)
110 rpath-link := $(rpath-link):$(common-objpfx)mach:$(common-objpfx)hurd
112 # And get them into the libc.so ldscript.
113 $(inst_libdir)/libc.so: $(rpcuserlibs)
115 # The RPC stubs from these libraries are needed in building the dynamic
116 # linker, too. It must be self-contained, so we link the needed PIC
117 # objects directly into the shared object.
118 ifeq (elf,$(subdir))
119 $(objpfx)librtld.so: $(rpcuserlibs:.so=_pic.a)
120 endif
123 endif # in-Makerules