-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
selftests/powerpc: Re-order *FLAGS to follow lib.mk
In some powerpc/ sub-folder Makefiles, CFLAGS are defined before lib.mk include. Clean it up by re-ordering the flags to follow after the mk include. This is needed to support sub-folders in powerpc/ buildable on its own. Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20240229093711.581230-1-maddy@linux.ibm.com
- Loading branch information
Madhavan Srinivasan
authored and
Michael Ellerman
committed
Apr 29, 2024
1 parent
29247de
commit 3749684
Showing
13 changed files
with
45 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
CFLAGS = -O3 -m64 -I./include -I../include | ||
|
||
TEST_GEN_FILES := gzfht_test gunz_test | ||
TEST_PROGS := nx-gzip-test.sh | ||
|
||
include ../../lib.mk | ||
|
||
CFLAGS = -O3 -m64 -I./include -I../include | ||
|
||
$(TEST_GEN_FILES): gzip_vas.c ../utils.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
CFLAGS += -I$(CURDIR) | ||
|
||
TEST_GEN_PROGS := load_unaligned_zeropad | ||
|
||
top_srcdir = ../../../../.. | ||
include ../../lib.mk | ||
|
||
CFLAGS += -I$(CURDIR) | ||
|
||
$(TEST_GEN_PROGS): ../harness.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
TEST_GEN_PROGS := ipc_unmuxed rtas_filter | ||
|
||
CFLAGS += $(KHDR_INCLUDES) | ||
|
||
top_srcdir = ../../../../.. | ||
include ../../lib.mk | ||
|
||
CFLAGS += $(KHDR_INCLUDES) | ||
|
||
$(TEST_GEN_PROGS): ../harness.c ../utils.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
TEST_GEN_PROGS := test-vphn | ||
|
||
CFLAGS += -m64 -I$(CURDIR) | ||
|
||
top_srcdir = ../../../../.. | ||
include ../../lib.mk | ||
|
||
CFLAGS += -m64 -I$(CURDIR) | ||
|
||
$(TEST_GEN_PROGS): ../harness.c | ||
|