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 23 LIBCPUSET_DIR := ../cpuset_lib 24 25 LIBCPUSET := $(LIBCPUSET_DIR)/libcpu_set.a 26 27 LIBCONTROLLERS_DIR := ../../libcontrollers 28 29 LIBCONTROLLERS := $(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 40 MAKE_DEPS := $(LIBCONTROLLERS) $(LIBCPUSET) 41 42 LDFLAGS += -L$(abs_builddir)/$(LIBCPUSET_DIR) -L$(abs_builddir)/$(LIBCONTROLLERS_DIR) 43 44 LDLIBS += -lcpu_set -lcontrollers -lltp 45 46 INSTALL_TARGETS ?= *.sh 47 48 # vim: syntax=make 49