summaryrefslogtreecommitdiff
path: root/Documentation/mic/mpssd/Makefile
diff options
context:
space:
mode:
authorShuah Khan <shuahkh@osg.samsung.com>2016-09-17 00:53:52 +0300
committerShuah Khan <shuahkh@osg.samsung.com>2016-09-20 21:38:48 +0300
commit6bee835dd54e279f3d3ae2eca92a9c394b4fd028 (patch)
tree5dfd18866d8ec5e533fa1173f2fc5c952c658cb6 /Documentation/mic/mpssd/Makefile
parent3d2c86e3057995270e08693231039d9d942871f0 (diff)
downloadlinux-6bee835dd54e279f3d3ae2eca92a9c394b4fd028.tar.xz
samples: move mic/mpssd example code from Documentation
Move mic/mpssd examples to samples and remove it from Documentation Makefile. Create a new Makefile to build mic/mpssd. It can be built from top level directory or from mic/mpssd directory: Run make -C samples/mic/mpssd or cd samples/mic/mpssd; make Acked-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'Documentation/mic/mpssd/Makefile')
-rw-r--r--Documentation/mic/mpssd/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Documentation/mic/mpssd/Makefile b/Documentation/mic/mpssd/Makefile
deleted file mode 100644
index 06871b0c08a6..000000000000
--- a/Documentation/mic/mpssd/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-ifndef CROSS_COMPILE
-# List of programs to build
-hostprogs-$(CONFIG_X86_64) := mpssd
-
-mpssd-objs := mpssd.o sysfs.o
-
-# Tell kbuild to always build the programs
-always := $(hostprogs-y)
-
-HOSTCFLAGS += -I$(objtree)/usr/include -I$(srctree)/tools/include
-
-ifdef DEBUG
-HOSTCFLAGS += -DDEBUG=$(DEBUG)
-endif
-
-HOSTLOADLIBES_mpssd := -lpthread
-
-install:
- install mpssd /usr/sbin/mpssd
- install micctrl /usr/sbin/micctrl
-endif