xref: /aosp_15_r20/external/ltp/testcases/kernel/Makefile (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1# SPDX-License-Identifier: GPL-2.0-or-later
2# Copyright (C) 2009, Cisco Systems Inc.
3# Copyright (C) 2010, Linux Test Project.
4# Ngie Cooper, July 2009
5
6top_srcdir		?= ../..
7
8include $(top_srcdir)/include/mk/env_pre.mk
9
10# NOTE (garrcoop): mce-test isn't integrated into the build.
11
12# Build syscalls in all scenarios.
13SUBDIRS			:= syscalls
14
15# Build lib
16SUBDIRS			+= lib
17
18# KEEP THIS LIST ALPHABETIZED PLEASE!
19SUBDIRS			+= connectors \
20			   containers \
21			   controllers \
22			   crypto \
23			   device-drivers \
24			   firmware \
25			   fs \
26			   hotplug \
27			   input \
28			   io \
29			   ipc \
30			   irq \
31			   kvm \
32			   logging \
33			   mem \
34			   numa \
35			   power_management \
36			   pty \
37			   sched \
38			   security \
39			   sound \
40			   tracing \
41			   uevents \
42			   watchqueue \
43
44ifeq ($(WITH_KVM_TESTSUITE),yes)
45SUBDIRS			+= kvm
46
47endif
48
49ifeq ($(ANDROID),1)
50FILTER_OUT_DIRS		+= containers controllers device-drivers fs io ipc mem \
51				sched security
52endif
53
54include $(top_srcdir)/include/mk/generic_trunk_target.mk
55