summaryrefslogtreecommitdiff
path: root/tools/laptop/dslm/Makefile
diff options
context:
space:
mode:
authorShuah Khan <shuahkh@osg.samsung.com>2016-09-21 16:34:55 -0600
committerShuah Khan <shuahkh@osg.samsung.com>2016-09-23 13:07:21 -0600
commit3ca9760fdfa411f7e5db54b3437fbb858d2ec825 (patch)
tree8a2839309295a8e982544ee3f151d854916d97e7 /tools/laptop/dslm/Makefile
parentd522b2cdfed853e372d6b64a89d070368f0718f7 (diff)
tools: move laptops dslm tool from Documentation
Move laptops dslm tool to tools/laptop/dslm and remove it from Documentation Makefile. Update location information for this tool. Create a new Makefile to build dslm. It can be built from top level directory or from laptops directory: Run make -C tools/laptop/dslm or cd tools/laptop/dslm; make Acked-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/laptop/dslm/Makefile')
-rw-r--r--tools/laptop/dslm/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/laptop/dslm/Makefile b/tools/laptop/dslm/Makefile
new file mode 100644
index 000000000000..ff613b31730b
--- /dev/null
+++ b/tools/laptop/dslm/Makefile
@@ -0,0 +1,9 @@
+CC := $(CROSS_COMPILE)gcc
+CFLAGS := -I../../usr/include
+
+PROGS := dslm
+
+all: $(PROGS)
+
+clean:
+ rm -fr $(PROGS)