• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
18ifneq ($(UCLINUX),1)
19# KEEP THIS LIST ALPHABETIZED PLEASE!
20SUBDIRS			+= connectors \
21			   containers \
22			   controllers \
23			   crypto \
24			   device-drivers \
25			   firmware \
26			   fs \
27			   hotplug \
28			   input \
29			   io \
30			   ipc \
31			   irq \
32			   kvm \
33			   logging \
34			   mem \
35			   numa \
36			   pty \
37			   sched \
38			   security \
39			   sound \
40			   tracing \
41			   uevents \
42			   watchqueue \
43
44ifeq ($(WITH_POWER_MANAGEMENT_TESTSUITE),yes)
45SUBDIRS			+= power_management
46endif
47
48ifeq ($(WITH_KVM_TESTSUITE),yes)
49SUBDIRS			+= kvm
50endif
51
52endif
53
54ifeq ($(ANDROID),1)
55FILTER_OUT_DIRS		+= containers controllers device-drivers fs io ipc mem \
56				sched security
57endif
58
59include $(top_srcdir)/include/mk/generic_trunk_target.mk
60