]> git.saurik.com Git - apple/libsystem.git/blame_incremental - GNUmakefile
Libsystem-159.tar.gz
[apple/libsystem.git] / GNUmakefile
... / ...
CommitLineData
1##---------------------------------------------------------------------
2# Makefile for Libsystem
3# Call Makefile to do the work, but for the install case, we need to
4# call Makefile for each arch separately, and create fat dylibs at the
5# end. This is because the comm page symbols are added as a special segment,
6# which the linker will not thin, so we have to build thin and combine.
7##---------------------------------------------------------------------
8Project = Libsystem
9VersionLetter = B
10
11# Remove any NEXT_ROOT argument
12override MAKEOVERRIDES := $(filter-out NEXT_ROOT=%,$(MAKEOVERRIDES))
13override MAKEFILEPATH := $(subst $(NEXT_ROOT),,$(MAKEFILEPATH))
14unexport NEXT_ROOT
15
16include $(MAKEFILEPATH)/CoreOS/ReleaseControl/Common.make
17
18ifeq ($(Version),0)
19ifdef RC_ProjectSourceVersion
20Version = $(RC_ProjectSourceVersion)
21endif
22endif
23
24no_target:
25 @$(MAKE) -f Makefile
26
27ifndef RC_TARGET_CONFIG
28export RC_TARGET_CONFIG = MacOSX
29endif
30
31# Default platform order file. The platform Makefile.inc can override.
32PLATFORM_ORDER_FILE = $(SRCROOT)/Platforms/$(RC_TARGET_CONFIG)/System.order
33
34include Platforms/$(RC_TARGET_CONFIG)/Makefile.inc
35
36##---------------------------------------------------------------------
37# For each arch, we setup the independent OBJROOT and DSTROOT, and adjust
38# the other flags. After all the archs are built, we copy over one on
39# time (for the non-dylib files), and then call lipo to create fat files
40# for the three dylibs.
41##---------------------------------------------------------------------
42NARCHS = $(words $(RC_ARCHS))
43USRLIB = /usr/lib
44ifdef ALTUSRLOCALLIBSYSTEM
45LIBSYS = $(ALTUSRLOCALLIBSYSTEM)
46else
47LIBSYS = $(SDKROOT)/usr/local/lib/system
48endif
49FORMS = dynamic
50SUFFIX = ''
51ifdef FEATURE_DEBUG_DYLIB
52FORMS += debug
53SUFFIX += _debug
54endif
55ifdef FEATURE_PROFILE_DYLIB
56FORMS += profile
57SUFFIX += _profile
58endif
59BSD_LIBS = c info m pthread dbm poll dl rpcsvc proc
60FPATH = /System/Library/Frameworks/System.framework
61
62build:: libSystem
63 @set -x && \
64 cd $(DSTROOT)/usr/lib && \
65 for i in $(BSD_LIBS); do \
66 $(LN) -sf libSystem.dylib lib$$i.dylib || exit 1; \
67 done
68 $(FIND) $(DSTROOT) -type l ! -perm 755 | $(XARGS) chmod -hv 755
69 $(INSTALL_DIRECTORY) $(DSTROOT)$(FPATH)/Versions/$(VersionLetter)/Resources
70 @set -x && \
71 cd $(DSTROOT)$(FPATH) && \
72 $(LN) -sf Versions/Current/PrivateHeaders && \
73 $(LN) -sf Versions/Current/Resources && \
74 for S in $(SUFFIX); do \
75 $(LN) -sf Versions/Current/System$$S || exit 1; \
76 done && \
77 cd Versions && \
78 $(LN) -sf $(VersionLetter) Current && \
79 cd $(VersionLetter) && \
80 for S in $(SUFFIX); do \
81 $(LN) -sf ../../../../../../usr/lib/libSystem.$(VersionLetter)$$S.dylib System$$S || exit 1; \
82 done && \
83 plutil -convert binary1 -o Resources/Info.plist $(SRCROOT)/Info.plist
84
85libc:
86 $(MKDIR) '$(OBJROOT)/libc'
87 $(BSDMAKE) -C libsys install \
88 FEATURE_DEBUG_DYLIB=$(FEATURE_DEBUG_DYLIB) \
89 FEATURE_PROFILE_DYLIB=$(FEATURE_PROFILE_DYLIB) \
90 DSTROOT='$(DSTROOT)' \
91 OBJROOT='$(OBJROOT)/libc' \
92 SRCROOT='$(SRCROOT)' \
93 SYMROOT='$(SYMROOT)'
94
95libSystem:
96 $(MKDIR) '$(OBJROOT)/libSystem'
97 $(BSDMAKE) install \
98 FEATURE_LIBMATHCOMMON=$(FEATURE_LIBMATHCOMMON) \
99 PLATFORM_ORDER_FILE=$(PLATFORM_ORDER_FILE) \
100 FORMS='$(FORMS)' \
101 Version=$(Version) \
102 VersionLetter=$(VersionLetter) \
103 DSTROOT='$(DSTROOT)' \
104 OBJROOT='$(OBJROOT)/libSystem' \
105 SRCROOT='$(SRCROOT)' \
106 SYMROOT='$(SYMROOT)'