summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/linux/add-symbols/Makefile
blob: 98042d61ea562c8e9def3ef624417762d9797d96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
CXX_SOURCES := main.cpp
LD_EXTRAS := -Wl,--build-id=none

all: stripped.out

stripped.out : a.out
	$(OBJCOPY) --remove-section=.note.gnu.build-id --remove-section=.gnu_debuglink --strip-debug $< $@

clean::
	$(RM) stripped.out

include Makefile.rules