blob: c701797f0a7db80f54c05c2b0dfaa1716ecdae23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
LEVEL = ../../make
CXX_SOURCES := main.cpp
LD_EXTRAS += -Wl,--build-id=none
localall : stripped.out all
stripped.out : a.out
$(OBJCOPY) --remove-section=.note.gnu.build-id --remove-section=.gnu_debuglink --strip-debug a.out stripped.out
clean::
$(RM) stripped.out
include $(LEVEL)/Makefile.rules
|