1# 2# Copyright (C) 2012 Linux Test Project, Inc. 3# 4# This program is free software; you can redistribute it and/or modify 5# it under the terms of the GNU General Public License as published by 6# the Free Software Foundation; either version 2 of the License, or 7# (at your option) any later version. 8# 9# This program is distributed in the hope that it will be useful, 10# but WITHOUT ANY WARRANTY; without even the implied warranty of 11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 12# the GNU General Public License for more details. 13# 14# You should have received a copy of the GNU General Public License 15# along with this program; if not, write to the Free Software 16# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 17# 18 19KERNEL_SRCDIR := $(abs_top_srcdir)/testcases/kernel 20LIBKERNTEST_SRCDIR := $(KERNEL_SRCDIR)/lib 21 22KERNEL_DIR := $(abs_top_builddir)/testcases/kernel 23LIBKERNTEST_DIR := $(KERNEL_DIR)/lib 24LIBKERNTEST := $(LIBKERNTEST_DIR)/libkerntest.a 25CPPFLAGS += -I$(KERNEL_SRCDIR)/include 26LDLIBS += -lkerntest -lltp $(NUMA_LIBS) 27LDFLAGS += -L$(LIBKERNTEST_DIR) 28 29$(LIBKERNTEST_DIR): 30 mkdir -p "$@" 31 32$(LIBKERNTEST): $(LIBKERNTEST_DIR) 33 $(MAKE) -C $^ -f "$(LIBKERNTEST_SRCDIR)/Makefile" all 34 35MAKE_DEPS += $(LIBKERNTEST) 36 37trunk-clean:: | lib-clean 38 39lib-clean:: $(LIBKERNTEST_DIR) 40 $(MAKE) -C $^ -f "$(LIBKERNTEST_SRCDIR)/Makefile" clean 41