aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/macosx/add-dsym/Makefile
blob: 4e4aa71de2a2ada7bf43a8afd35bd52b5df3ccc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CC ?= clang

all: clean
	mkdir hide.app
	mkdir hide.app/Contents
	$(CC) -g main.c
	mv a.out.dSYM hide.app/Contents
	strip -x a.out

clean:
	rm -rf a.out a.out.dSYM hide.app