haiku/src/system/libroot/Jamfile
Ingo Weinhold 6b202f4e3d * Introduced new header directory headers/private/system which is supposed
to contain headers shared by kernel and userland (mainly libroot).
* Moved quite a few private kernel headers to the new location. Split
  several kernel headers into a shared part and one that is still kernel
  private. Adjusted all affected Jamfiles and source in the standard x86
  build accordingly. The build for other architectures and for test code
  may be broken.
* Quite a bit of userland code still includes private kernel headers.
  Mostly those are <util/*> headers. The ones that aren't strictly
  kernel-only should be moved to some other place (maybe
  headers/private/shared/util).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25486 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-05-14 03:55:16 +00:00

67 lines
1.5 KiB
Plaintext

SubDir HAIKU_TOP src system libroot ;
UsePrivateHeaders libroot ;
UsePrivateSystemHeaders ;
UnarchiveObjects $(TARGET_GCC_LIBGCC_OBJECTS) : $(TARGET_GCC_LIBGCC) ;
# we need to link against libgcc.a objects and make
# it available to other applications as in BeOS
local librootObjects =
os_main.o
os_arch_$(TARGET_ARCH).o
posix_arch_$(TARGET_ARCH).o
posix_crypt.o
posix_locale.o
posix_main.o
posix_malloc.o
posix_pthread.o
posix_signal.o
posix_stdio.o
posix_gnu_arch_$(TARGET_ARCH).o
posix_gnu_ctype.o
posix_gnu_ext.o
posix_gnu_iconv.o
posix_gnu_libio.o
posix_gnu_locale.o
posix_gnu_misc.o
posix_gnu_regex.o
posix_gnu_stdio.o
posix_gnu_stdlib.o
posix_gnu_string.o
posix_gnu_wcsmbs.o
posix_gnu_wctype.o
posix_stdlib.o
posix_string.o
posix_string_arch_$(TARGET_ARCH).o
posix_sys.o
posix_time.o
posix_unistd.o
;
DONT_LINK_AGAINST_LIBROOT on libroot.so = true ;
SharedLibrary libroot.so
:
libroot_init.c
:
$(TARGET_GCC_LIBGCC_OBJECTS)
$(librootObjects:G=nogrist)
;
# Copy libroot.so and update the copy's revision section. We link everything
# against the original, but the copy will end up on the disk image (this way
# we avoid unnecessary dependencies). The copy will be located in a subdirectory.
if $(TARGET_PLATFORM) = haiku {
MakeLocate <revisioned>libroot.so
: [ FDirName $(TARGET_DEBUG_$(DEBUG)_LOCATE_TARGET) revisioned ] ;
CopySetHaikuRevision <revisioned>libroot.so : libroot.so ;
}
SubInclude HAIKU_TOP src system libroot os ;
SubInclude HAIKU_TOP src system libroot posix ;