diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-08-30 23:40:22 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-08-30 23:40:22 +0000 |
commit | 924840c54244fe16223c42a91c36ca976784043b (patch) | |
tree | e7090890ae159ec9938f3f545677408faba7fe88 /sysdeps | |
parent | 6e953631df4b716fcf2d2bcfb62e44ffba2a6b40 (diff) | |
download | glibc-924840c54244fe16223c42a91c36ca976784043b.tar.gz glibc-924840c54244fe16223c42a91c36ca976784043b.tar.xz glibc-924840c54244fe16223c42a91c36ca976784043b.zip |
*** empty log message ***
Fri Aug 30 13:39:21 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * Makerules (BUILD_CFLAGS): Use @(common-objpfx) for config.h, not $(..). Some rules (like sysdeps/posix/Makefile for mk-stdiolim) do `cd' commands. (sed-remove-objpfx): Don't substitute for $(objpfx) anymore; $(common-objpfx) is good enough. * Rules (common-generated): Provide default (empty) value. (dummy.o, dummy.c, empty.o, empty.c): Put these in $(common-generated), not $(generated), and without $(..). (subdir_echo-distinfo): Treat $(common-generated) just like $(generated). (generated): Depend on the (suitably mutated) $(common-generated) files too. * Makerules (common-clean): Remove common-generated files too. * sysdeps/mach/hurd/Makefile (generated): Don't put errnos.d and stamp-errnos here. (common-generated): Do put errnos.d and stamp-errnos here. (rpath-link): Don't use +=; $(rpath-link) is a colon separated list. * sysdeps/mach/hurd/Makefile (before-compile): Add auth; also add auth to following rule to get it built. $(common-objpfx). All uses in dependency lists changed.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mach/hurd/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index c9ac18b426..1fe99f3125 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -44,10 +44,11 @@ ifeq (,$(filter mach hurd,$(subdir))) hurd-objpfx = $(common-objpfx)hurd/ # These are all the generated headers that <hurd.h> includes. -before-compile += $(patsubst %,$(hurd-objpfx)hurd/%.h,io fs process) -$(patsubst %,$(hurd-objpfx)hurd/%.%,io fs process): +before-compile += $(patsubst %,$(hurd-objpfx)hurd/%.h,auth io fs process) +$(patsubst %,$(hurd-objpfx)hurd/%.%,auth io fs process): $(MAKE) -C $(..)hurd generated no_deps=t endif + # Generate errnos.h from the section of the manual that lists all the errno # codes. @@ -86,7 +87,8 @@ $(common-objpfx)stamp-errnos: $(hurd)/errnos.awk $(errno.texinfo) \ test ! -d CVS || \ (cd $(hurd); cvs commit -m'Regenerated from $^' errnos.h) touch $@ -generated += errnos.d stamp-errnos + +common-generated += errnos.d stamp-errnos # We install the real libc.a as libcrt.a and as libc.a we install a linker # script which does -( -lcrt -lmachuser -lhurduser -). @@ -103,7 +105,7 @@ endif rpcuserlibs := $(common-objpfx)mach/libmachuser.so \ $(common-objpfx)hurd/libhurduser.so $(common-objpfx)libc.so: $(rpcuserlibs) -rpath-link += $(common-objpfx)mach:$(common-objpfx)hurd +rpath-link := $(rpath-link):$(common-objpfx)mach:$(common-objpfx)hurd # The RPC stubs from these libraries are needed in building the dynamic # linker, too. It must be self-contained, so we link the needed PIC |