Makefile文件  |  41行  |  1.36 KB

#
#  Copyright (C) 2012 Linux Test Project, Inc.
#
#  This program is free software;  you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY;  without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
#  the GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program;  if not, write to the Free Software
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
#

KERNEL_SRCDIR		:= $(abs_top_srcdir)/testcases/kernel
LIBKERNTEST_SRCDIR	:= $(KERNEL_SRCDIR)/lib

KERNEL_DIR		:= $(abs_top_builddir)/testcases/kernel
LIBKERNTEST_DIR		:= $(KERNEL_DIR)/lib
LIBKERNTEST		:= $(LIBKERNTEST_DIR)/libkerntest.a
CPPFLAGS		+= -I$(KERNEL_SRCDIR)/include
LDLIBS			+= -lkerntest -lltp $(NUMA_LIBS)
LDFLAGS			+= -L$(LIBKERNTEST_DIR)

$(LIBKERNTEST_DIR):
	mkdir -p "$@"

$(LIBKERNTEST): $(LIBKERNTEST_DIR)
	$(MAKE) -C $^ -f "$(LIBKERNTEST_SRCDIR)/Makefile" all

MAKE_DEPS		+= $(LIBKERNTEST)

trunk-clean:: | lib-clean

lib-clean:: $(LIBKERNTEST_DIR)
	$(MAKE) -C $^ -f "$(LIBKERNTEST_SRCDIR)/Makefile" clean