GNU Linux-libre 4.14.251-gnu1
[releases.git] / tools / testing / selftests / powerpc / switch_endian / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 TEST_GEN_PROGS := switch_endian_test
3
4 ASFLAGS += -O2 -Wall -g -nostdlib -m64
5
6 EXTRA_CLEAN = $(OUTPUT)/*.o $(OUTPUT)/check-reversed.S
7
8 include ../../lib.mk
9
10 $(OUTPUT)/switch_endian_test: ASFLAGS += -I $(OUTPUT)
11 $(OUTPUT)/switch_endian_test: $(OUTPUT)/check-reversed.S
12
13 $(OUTPUT)/check-reversed.o: $(OUTPUT)/check.o
14         $(CROSS_COMPILE)objcopy -j .text --reverse-bytes=4 -O binary $< $@
15
16 $(OUTPUT)/check-reversed.S: $(OUTPUT)/check-reversed.o
17         hexdump -v -e '/1 ".byte 0x%02X\n"' $< > $@