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 logging \ 33 mem \ 34 numa \ 35 pty \ 36 sched \ 37 security \ 38 sound \ 39 tracing \ 40 uevents \ 41 watchqueue \ 42 43ifeq ($(WITH_POWER_MANAGEMENT_TESTSUITE),yes) 44SUBDIRS += power_management 45endif 46 47ifeq ($(WITH_KVM_TESTSUITE),yes) 48SUBDIRS += kvm 49endif 50 51endif 52 53ifeq ($(ANDROID),1) 54FILTER_OUT_DIRS += containers controllers device-drivers fs io ipc mem \ 55 sched security 56endif 57 58include $(top_srcdir)/include/mk/generic_trunk_target.mk 59