This file is indexed.

/usr/share/doc/gcc-arm-none-eabi/examples/src/multiram/Makefile is in gcc-arm-none-eabi 4.8.4-1+11-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
include ../makefile.conf
NAME=multiram
STARTUP_DEFS=-D__NO_SYSTEM_INIT

CXXFLAGS+=-D__STARTUP_COPY_MULTIPLE -D__STARTUP_CLEAR_BSS_MULTIPLE
LDSCRIPTS=-L. -L$(BASE)/ldscripts -T multi-ram.ld
LFLAGS=$(USE_NANO) $(USE_SEMIHOST) $(LDSCRIPTS) $(GC) $(MAP)

$(NAME)-$(CORE).axf: $(NAME).cc $(STARTUP)
	$(CXX) $^ $(CXXFLAGS) -fno-exceptions $(LFLAGS) -o $@

clean: 
	rm -f $(NAME)*.axf *.map