diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile index db83529bdc..444962a005 100644 --- a/Makefile +++ b/Makefile @@ -54,8 +54,8 @@ endif subdirs = csu assert ctype db locale intl catgets math setjmp signal stdlib \ stdio-common $(stdio) $(malloc) string wcsmbs time dirent grp pwd \ posix io termios resource misc login socket sysvipc gmon gnulib \ - wctype manual shadow md5-crypt nss $(sysdep-subdirs) elf po \ - $(add-ons) + wctype manual shadow md5-crypt nss $(sysdep-subdirs) po \ + $(add-ons) elf export subdirs := $(subdirs) # Benign, useless in GNU make before 3.63. # The mach and hurd subdirectories have many generated header files which @@ -90,7 +90,7 @@ before-compile = $(objpfx)version-info.h echo-headers: subdir_echo-headers # What to install. -install-others = $(includedir)/stubs.h +install-others = $(includedir)/gnu/stubs.h ifeq (yes,$(build-shared)) install-others += $(includedir)/gnu/lib-names.h endif @@ -158,7 +158,7 @@ $(version.c-objects): $(objpfx)version-info.h # Makerules creates a file `stub-$(subdir)' for each subdirectory, which # contains `#define __stub_FUNCTION' for each function which is a stub. -# Here we paste all of these together into <stubs.h>. +# Here we paste all of these together into <gnu/stubs.h>. subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)stub-$(dir)) @@ -168,7 +168,7 @@ subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)stub-$(dir)) # 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. -$(includedir)/stubs.h: subdir_install +$(includedir)/gnu/stubs.h: subdir_install @rm -f $(objpfx)stubs.h (echo '/* This file is automatically generated.';\ echo ' It defines a symbol `__stub_FUNCTION'\'' for each function';\ @@ -182,7 +182,7 @@ $(includedir)/stubs.h: subdir_install ifeq (yes,$(build-shared)) -# Like stubs.h the gnu/lib-names.h header is not used while building the +# Like gnu/stubs.h the gnu/lib-names.h header is not used while building the # libc itself. So we generate it while installing. $(includedir)/gnu/lib-names.h: $(common-objpfx)soversions.mk @rm -f $(objpfx)lib-names.h |