diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-06-13 09:47:54 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-06-13 09:47:54 +0200 |
commit | 10339740506424abe8e3a3ecdd979aa10ae592ca (patch) | |
tree | 9e0b946472c75366364fff7eb83fd41a18fcbbf5 /libpthread/nptl/Makefile.in | |
parent | 2679c354bd9345dfe2e2b9d78ec64a0dad642215 (diff) |
nptl: fix symlinking headers
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libpthread/nptl/Makefile.in')
-rw-r--r-- | libpthread/nptl/Makefile.in | 35 |
1 files changed, 15 insertions, 20 deletions
diff --git a/libpthread/nptl/Makefile.in b/libpthread/nptl/Makefile.in index 853ac501e..3accff70f 100644 --- a/libpthread/nptl/Makefile.in +++ b/libpthread/nptl/Makefile.in @@ -320,26 +320,21 @@ pregen-headers-$(UCLIBC_HAS_THREADS_NATIVE) += $(PTHREAD_OUT)/pthread-errnos.h headers-$(UCLIBC_HAS_THREADS_NATIVE) += $(nptl_headers_bootstrap) -$(top_builddir)include/pthread.h: - $(do_ln) ../$(PTDIR)/sysdeps/pthread/$(@F) $(top_builddir)$@ -$(top_builddir)include/semaphore.h: - $(do_ln) ../$(PTDIR)/$(@F) $(top_builddir)$@ -$(top_builddir)include/bits/semaphore.h: | include/bits - $(do_ln) ../../$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)/bits/$(@F) $(top_builddir)$@ -$(top_builddir)include/bits/pthreadtypes.h: | include/bits - $(do_ln) ../../$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)/bits/$(@F) $(top_builddir)$@ -$(top_builddir)include/bits/libc-lock.h: | include/bits - $(do_ln) ../../$(PTDIR)/sysdeps/pthread/bits/$(@F) $(top_builddir)$@ -$(top_builddir)include/bits/stdio-lock.h: | include/bits - $(do_ln) ../../$(PTDIR)/sysdeps/pthread/bits/$(@F) $(top_builddir)$@ - -nptl_headers_bootstrap := $(top_builddir)include/pthread.h \ - $(top_builddir)include/semaphore.h \ - $(top_builddir)include/bits/semaphore.h \ - $(top_builddir)include/bits/pthreadtypes.h \ - $(top_builddir)include/bits/libc-lock.h \ - $(top_builddir)include/bits/stdio-lock.h - +LIBPTHREAD_H := $(addprefix $(top_builddir)include/,semaphore.h) +LIBPTHREAD_INCLUDE_H := $(addprefix $(top_builddir)include/,pthread.h) +LIBPTHREAD_INCLUDE_BITS_H := $(addprefix $(top_builddir)include/bits/,libc-lock.h stdio-lock.h) +LIBPTHREAD_INCLUDE_STD_IMPL_OS_ARCH_BITS_H := $(addprefix $(top_builddir)include/bits/,pthreadtypes.h semaphore.h) + +$(LIBPTHREAD_INCLUDE_STD_IMPL_OS_ARCH_BITS_H): $(top_builddir)include/bits/%: | $(top_builddir)include/bits + $(do_ln) $(call rel_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)/bits/$(@F) $@ +$(LIBPTHREAD_INCLUDE_BITS_H): $(top_builddir)include/bits/%: | $(top_builddir)include/bits + $(do_ln) $(call rel_srcdir)$(PTDIR)/sysdeps/pthread/bits/$(@F) $@ +$(LIBPTHREAD_INCLUDE_H): $(top_builddir)include/%: | $(top_builddir)include + $(do_ln) $(call rel_srcdir)$(PTDIR)/sysdeps/pthread/$(@F) $@ +$(LIBPTHREAD_H): $(top_builddir)include/%: | $(top_builddir)include + $(do_ln) $(call rel_srcdir)$(PTDIR)/$(@F) $@ + +nptl_headers_bootstrap = $(LIBPTHREAD_H) $(LIBPTHREAD_INCLUDE_H) $(LIBPTHREAD_INCLUDE_BITS_H) $(LIBPTHREAD_INCLUDE_STD_IMPL_OS_ARCH_BITS_H) HEADERCLEAN_libpthread/nptl: $(do_rm) $(nptl_headers_bootstrap) \ |