brintos

brintos / linux-shallow public Read only

0
0
Text · 566 B · 0da2e0a Raw
20 lines · plain
1# SPDX-License-Identifier: GPL-2.02TEST_GEN_PROGS := switch_endian_test3 4EXTRA_CLEAN = $(OUTPUT)/*.o $(OUTPUT)/check-reversed.S5 6top_srcdir = ../../../../..7include ../../lib.mk8include ../flags.mk9 10ASFLAGS += -O2 -Wall -g -nostdlib -m6411 12$(OUTPUT)/switch_endian_test: ASFLAGS += -I $(OUTPUT)13$(OUTPUT)/switch_endian_test: $(OUTPUT)/check-reversed.S14 15$(OUTPUT)/check-reversed.o: $(OUTPUT)/check.o16	$(CROSS_COMPILE)objcopy -j .text --reverse-bytes=4 -O binary $< $@17 18$(OUTPUT)/check-reversed.S: $(OUTPUT)/check-reversed.o19	hexdump -v -e '/1 ".byte 0x%02X\n"' $< > $@20