[Lldb-commits] [lldb] r322341 - Fix the Makefile - this version should work on the bot

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 11 17:30:33 PST 2018


Author: jingham
Date: Thu Jan 11 17:30:33 2018
New Revision: 322341

URL: http://llvm.org/viewvc/llvm-project?rev=322341&view=rev
Log:
Fix the Makefile - this version should work on the bot

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile

Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile?rev=322341&r1=322340&r2=322341&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile Thu Jan 11 17:30:33 2018
@@ -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
-




More information about the lldb-commits mailing list