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