aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/macosx/add-dsym/Makefile
blob: b949b308d3acce84f556788a7adcaca7893f0a53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
C_SOURCES = main.c

include Makefile.rules

all: a.out.dSYM hide.app/Contents/a.out.dSYM

hide.app/Contents/a.out.dSYM:
	mkdir hide.app
	mkdir hide.app/Contents
	mv a.out.dSYM hide.app/Contents
	$(STRIP) -x a.out
ifneq "$(CODESIGN)" ""
	$(CODESIGN) -fs - a.out
endif