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 42ifeq ($(WITH_POWER_MANAGEMENT_TESTSUITE),yes) 43SUBDIRS += power_management 44endif 45 46endif 47 48ifeq ($(ANDROID),1) 49FILTER_OUT_DIRS += containers controllers device-drivers fs io ipc mem \ 50 sched security 51endif 52 53include $(top_srcdir)/include/mk/generic_trunk_target.mk 54