diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-02-11 11:02:13 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-02-11 11:02:13 +0000 |
commit | b821229a10e85f03b47d048e119518885cc25e0b (patch) | |
tree | d9ad5bca232cd02a312ed222d1cf88057fdb2290 /Makefile | |
parent | 28c85b32ab50681c39105954b3fd5afa6c0b599a (diff) | |
download | glibc-b821229a10e85f03b47d048e119518885cc25e0b.tar.gz glibc-b821229a10e85f03b47d048e119518885cc25e0b.tar.xz glibc-b821229a10e85f03b47d048e119518885cc25e0b.zip |
Updated to fedora-glibc-20050211T1037
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile b/Makefile index c2f4ae32a5..dc7a6f177a 100644 --- a/Makefile +++ b/Makefile @@ -157,13 +157,25 @@ others: $(common-objpfx)testrun.sh subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)$(dir)/stubs) +ifeq ($(biarch),no) +installed-stubs = $(inst_includedir)/gnu/stubs.h +else +installed-stubs = $(inst_includedir)/gnu/stubs-$(biarch).h + +$(inst_includedir)/gnu/stubs.h: include/stubs-biarch.h $(+force) + $(INSTALL_DATA) $< $@ + +install-others-nosubdir: $(installed-stubs) +endif + + # Since stubs.h is never needed when building the library, we simplify the # hairy installation process by producing it in place only as the last part # of the top-level `make install'. It depends on subdir_install, which # iterates over all the subdirs; subdir_install in each subdir depends on # the subdir's stubs file. Having more direct dependencies would result in # extra iterations over the list for subdirs and many recursive makes. -$(inst_includedir)/gnu/stubs.h: include/stubs-prologue.h subdir_install +$(installed-stubs): include/stubs-prologue.h subdir_install $(make-target-directory) @rm -f $(objpfx)stubs.h (sed '/^@/d' $<; LC_ALL=C sort $(subdir-stubs)) > $(objpfx)stubs.h |