xref: /llvm-project/lldb/test/API/linux/add-symbols/Makefile (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1CXX_SOURCES := main.cpp
2LD_EXTRAS := -Wl,--build-id=none
3
4all: stripped.out
5
6stripped.out : a.out
7	$(OBJCOPY) --remove-section=.note.gnu.build-id --remove-section=.gnu_debuglink --strip-debug $< $@
8
9include Makefile.rules
10