aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/powerpc/switch_endian/Makefile
blob: bd0122306da669427c670f5c89390552ceb83225 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
TEST_GEN_PROGS := switch_endian_test

ASFLAGS += -O2 -Wall -g -nostdlib -m64

include ../../lib.mk

switch_endian_test: check-reversed.S

check-reversed.o: check.o
	$(CROSS_COMPILE)objcopy -j .text --reverse-bytes=4 -O binary $< $@

check-reversed.S: check-reversed.o
	hexdump -v -e '/1 ".byte 0x%02X\n"' $< > $@

clean:
	$(RM) $(TEST_GEN_PROGS) *.o check-reversed.S