Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

raid6: test: cosmetic cleanups for the test Makefile

Use tabs/spaces consistently: hard tabs for marking recipe lines only,
spaces for everything else.

Also, the OPTFLAGS declaration actually included the tabs preceding the
line comment, making compiler invocation lines unnecessarily long. As
the entire block of declarations are meant for ad-hoc customization
(otherwise they would probably make use of `?=` instead of `=`), move
the "Adjust as desired" comment above the block too to fix the long
invocation lines.

Signed-off-by: WANG Xuerui <git@xen0n.name>
Link: https://lore.kernel.org/r/20230731104911.411964-4-kernel@xen0n.name
Signed-off-by: Song Liu <song@kernel.org>

authored by

WANG Xuerui and committed by
Song Liu
2008d89f 9dd6e1da

+16 -15
+16 -15
lib/raid6/test/Makefile
··· 6 6 7 7 pound := \# 8 8 9 - CC = gcc 10 - OPTFLAGS = -O2 # Adjust as desired 11 - CFLAGS = -I.. -I ../../../include -g $(OPTFLAGS) 12 - LD = ld 13 - AWK = awk -f 14 - AR = ar 15 - RANLIB = ranlib 16 - OBJS = int1.o int2.o int4.o int8.o int16.o int32.o recov.o algos.o tables.o 9 + # Adjust as desired 10 + CC = gcc 11 + OPTFLAGS = -O2 12 + CFLAGS = -I.. -I ../../../include -g $(OPTFLAGS) 13 + LD = ld 14 + AWK = awk -f 15 + AR = ar 16 + RANLIB = ranlib 17 + OBJS = int1.o int2.o int4.o int8.o int16.o int32.o recov.o algos.o tables.o 17 18 18 19 ARCH := $(shell uname -m 2>/dev/null | sed -e /s/i.86/i386/) 19 20 ifeq ($(ARCH),i386) ··· 38 37 ifeq ($(IS_X86),yes) 39 38 OBJS += mmx.o sse1.o sse2.o avx2.o recov_ssse3.o recov_avx2.o avx512.o recov_avx512.o 40 39 CFLAGS += -DCONFIG_X86 41 - CFLAGS += $(shell echo "vpmovm2b %k1, %zmm5" | \ 42 - gcc -c -x assembler - >/dev/null 2>&1 && \ 43 - rm ./-.o && echo -DCONFIG_AS_AVX512=1) 40 + CFLAGS += $(shell echo "vpmovm2b %k1, %zmm5" | \ 41 + gcc -c -x assembler - >/dev/null 2>&1 && \ 42 + rm ./-.o && echo -DCONFIG_AS_AVX512=1) 44 43 else ifeq ($(HAS_NEON),yes) 45 44 OBJS += neon.o neon1.o neon2.o neon4.o neon8.o recov_neon.o recov_neon_inner.o 46 45 CFLAGS += -DCONFIG_KERNEL_MODE_NEON=1 ··· 64 63 %.uc: ../%.uc 65 64 cp -f $< $@ 66 65 67 - all: raid6.a raid6test 66 + all: raid6.a raid6test 68 67 69 68 raid6.a: $(OBJS) 70 - rm -f $@ 71 - $(AR) cq $@ $^ 72 - $(RANLIB) $@ 69 + rm -f $@ 70 + $(AR) cq $@ $^ 71 + $(RANLIB) $@ 73 72 74 73 raid6test: test.c raid6.a 75 74 $(CC) $(CFLAGS) -o raid6test $^