diff options
author | Jim Ingham <jingham@apple.com> | 2018-01-12 01:30:33 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2018-01-12 01:30:33 +0000 |
commit | 8157e8ee8c35efadb7ec7a8744d33eecf4254819 (patch) | |
tree | b1a9e11dfa89f922ec13a26670e3e6df226cce53 /lldb/packages/Python/lldbsuite/test | |
parent | 3ffbbeabbcd84f68bb1b7765226d0665eb8492a6 (diff) | |
download | bcm5719-llvm-8157e8ee8c35efadb7ec7a8744d33eecf4254819.tar.gz bcm5719-llvm-8157e8ee8c35efadb7ec7a8744d33eecf4254819.zip |
Fix the Makefile - this version should work on the bot
llvm-svn: 322341
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile b/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile index 5673a499377..c75a079fe81 100644 --- a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile +++ b/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile @@ -6,12 +6,11 @@ endif CFLAGS ?= -g -O0 -arch $(ARCH) -all: clean TestApp +all: TestApp.app/Contents/MacOS/TestApp -TestApp: +TestApp.app/Contents/MacOS/TestApp: $(CC) $(CFLAGS) -o TestApp main.c - mv TestApp TestApp.app/Contents/MacOs/TestApp + mv TestApp TestApp.app/Contents/MacOS/TestApp mv TestApp.dSYM TestApp.app.dSYM clean: rm -rf TestApp.app/Contents/MacOS/TestApp TestApp.app.dSYM - |