blob: 71a5c11a83d135f3e49a630b61aefffcd5ae452b [file] [log] [blame]
LEVEL = ../../make
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 $(LEVEL)/Makefile.rules