blob: 9a09ae5164aab8acb282609ccaf642ea002badf8 [file] [log] [blame]
Greg Clayton295c7cc2012-03-07 22:47:26 +00001installsrc:
2 echo "installsrc (doing nothing)"
3
4install:
5 echo "install (doing nothing)"
6
7clean:
8 echo "clean (doing nothing)"
9
10installhdrs:
11 cd "${TARGET_BUILD_DIR}/${LLDB_FRAMEWORK_INSTALL_DIR}/LLDB.framework/Headers" ;\
12 for file in *.h ;\
13 do \
14 /usr/bin/sed -i '' 's/\(#include\)[ ]*"lldb\/\(API\/\)\{0,1\}\(.*\)"/\1 <LLDB\/\3>/1' "$$file" ;\
15 /usr/bin/sed -i '' 's|<LLDB/Utility|<LLDB|' "$$file" ;\
16 /usr/bin/sed -i '' "s|//#define LLDB_VERSION|#define LLDB_VERSION ${CURRENT_PROJECT_VERSION} |" "$$file" ;\
17 done