Makefile (6f23fc47c1b2ac226704fb7294f43ed3b0965e51) | Makefile (b06fab003ae181c6690fe6d1f806636f816f4e50) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# Copyright (C) 2021 ARM Limited 3# Originally tools/testing/arm64/abi/Makefile 4 5# Additional include paths needed by kselftest.h and local headers 6CFLAGS += -D_GNU_SOURCE -std=gnu99 -I. 7 | 1# SPDX-License-Identifier: GPL-2.0 2# Copyright (C) 2021 ARM Limited 3# Originally tools/testing/arm64/abi/Makefile 4 5# Additional include paths needed by kselftest.h and local headers 6CFLAGS += -D_GNU_SOURCE -std=gnu99 -I. 7 |
8TEST_GEN_FILES := testcases/mmap_default testcases/mmap_bottomup | 8TEST_GEN_FILES := mmap_default mmap_bottomup |
9 | 9 |
10TEST_PROGS := testcases/run_mmap.sh | 10TEST_PROGS := run_mmap.sh |
11 12include ../../lib.mk 13 | 11 12include ../../lib.mk 13 |
14$(OUTPUT)/mm: testcases/mmap_default.c testcases/mmap_bottomup.c testcases/mmap_tests.h | 14$(OUTPUT)/mm: mmap_default.c mmap_bottomup.c mmap_tests.h |
15 $(CC) -o$@ $(CFLAGS) $(LDFLAGS) $^ | 15 $(CC) -o$@ $(CFLAGS) $(LDFLAGS) $^ |