Makefile.inc revision e520c3189f54b690d057ccdae29167d33771584c
1#
2#    kernel/controllers/cpuset testcase suite common definitions Makefile.
3#
4#    Copyright (C) 2009, Cisco Systems Inc.
5#
6#    This program is free software; you can redistribute it and/or modify
7#    it under the terms of the GNU General Public License as published by
8#    the Free Software Foundation; either version 2 of the License, or
9#    (at your option) any later version.
10#
11#    This program is distributed in the hope that it will be useful,
12#    but WITHOUT ANY WARRANTY; without even the implied warranty of
13#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14#    GNU General Public License for more details.
15#
16#    You should have received a copy of the GNU General Public License along
17#    with this program; if not, write to the Free Software Foundation, Inc.,
18#    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19#
20# Garrett Cooper, July 2009
21#
22
23LIBCPUSET_DIR		:= ../cpuset_lib
24
25LIBCPUSET		:= $(LIBCPUSET_DIR)/libcpu_set.a
26
27LIBCONTROLLERS_DIR	:= ../../libcontrollers
28
29LIBCONTROLLERS		:= $(LIBCONTROLLERS_DIR)/libcontrollers.a
30
31$(LIBCPUSET_DIR) $(LIBCONTROLLERS_DIR): %:
32	mkdir -p "$@"
33
34$(LIBCONTROLLERS): $(LIBCONTROLLERS_DIR)
35	$(MAKE) -C $^ -f "$(abs_srcdir)/$^/Makefile" all
36
37$(LIBCPUSET): $(LIBCPUSET_DIR) | $(LIBCONTROLLERS)
38	$(MAKE) -C $^ -f "$(abs_srcdir)/$^/Makefile" all
39
40MAKE_DEPS		:= $(LIBCONTROLLERS) $(LIBCPUSET)
41
42LDFLAGS			+= -L$(abs_builddir)/$(LIBCPUSET_DIR) -L$(abs_builddir)/$(LIBCONTROLLERS_DIR)
43
44LDLIBS			+= -lcpu_set -lcontrollers -lltp
45
46INSTALL_TARGETS		?= *.sh
47
48# vim: syntax=make
49