summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile')
-rw-r--r--packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile b/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
deleted file mode 100644
index 18a4934cca370..0000000000000
--- a/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-SRCDIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))/
-
-CC ?= clang
-
-ifeq "$(ARCH)" ""
- ARCH = x86_64
-endif
-
-CFLAGS ?= -g -O0 -arch $(ARCH)
-
-all: TestApp.app/Contents/MacOS/TestApp
-
-TestApp.app/Contents/MacOS/TestApp: $(SRCDIR)/main.c
- $(CC) $(CFLAGS) -o TestApp $<
- rm -rf TestApp.app
- cp -r $(SRCDIR)/TestApp.app .
- mv TestApp TestApp.app/Contents/MacOS/TestApp
- mv TestApp.dSYM TestApp.app.dSYM
-
-clean:
- rm -rf TestApp.app/Contents/MacOS/TestApp TestApp.app.dSYM