mirror of
https://github.com/darlinghq/darling-libcxx.git
synced 2024-11-23 11:59:52 +00:00
3c8894b078
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@134375 91177308-0d34-0410-b5e6-96231b3b80d8
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
##
|
|
# libcpp Makefile
|
|
##
|
|
|
|
SRCDIRS = .
|
|
DESTDIR = $(DSTROOT)
|
|
|
|
OBJROOT=.
|
|
SYMROOT=.
|
|
export TRIPLE=-apple-
|
|
|
|
ifeq (,$(RC_INDIGO))
|
|
INSTALL_PREFIX=""
|
|
else
|
|
INSTALL_PREFIX="$(SDKROOT)"
|
|
endif
|
|
|
|
help::
|
|
echo Use make install DSTROOT=<destination>
|
|
|
|
installsrc:: $(SRCROOT)
|
|
|
|
ditto $(SRCDIRS)/include $(SRCROOT)/include
|
|
ditto $(SRCDIRS)/lib $(SRCROOT)/lib
|
|
ditto $(SRCDIRS)/src $(SRCROOT)/src
|
|
ditto $(SRCDIRS)/Makefile $(SRCROOT)/Makefile
|
|
|
|
clean::
|
|
|
|
installhdrs::
|
|
|
|
mkdir -p $(DSTROOT)/$(INSTALL_PREFIX)/usr/include/c++/v1/ext
|
|
rsync -r --exclude=".*" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/usr/include/c++/v1/
|
|
chown -R root:wheel $(DSTROOT)/$(INSTALL_PREFIX)/usr/include
|
|
chmod 755 $(DSTROOT)/$(INSTALL_PREFIX)/usr/include/c++/v1
|
|
chmod 644 $(DSTROOT)/$(INSTALL_PREFIX)/usr/include/c++/v1/*
|
|
chmod 755 $(DSTROOT)/$(INSTALL_PREFIX)/usr/include/c++/v1/ext
|
|
chmod 644 $(DSTROOT)/$(INSTALL_PREFIX)/usr/include/c++/v1/ext/*
|
|
|
|
install:: installhdrs $(DESTDIR)
|
|
|
|
cd lib && ./buildit
|
|
ditto lib/libc++.1.dylib $(SYMROOT)/usr/lib/libc++.1.dylib
|
|
cd lib && dsymutil -o $(SYMROOT)/libc++.1.dylib.dSYM $(SYMROOT)/usr/lib/libc++.1.dylib
|
|
mkdir -p $(DSTROOT)/$(INSTALL_PREFIX)/usr/lib
|
|
strip -S -o $(DSTROOT)/$(INSTALL_PREFIX)/usr/lib/libc++.1.dylib $(SYMROOT)/usr/lib/libc++.1.dylib
|
|
cd $(DSTROOT)/$(INSTALL_PREFIX)/usr/lib && ln -s libc++.1.dylib libc++.dylib
|