summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/ptp/testptp.mk
diff options
context:
space:
mode:
authorShuah Khan2016-09-13 19:30:03 +0200
committerShuah Khan2016-09-20 17:54:38 +0200
commit8dbbf854202610a033a0788c33d8feb1548d3eeb (patch)
tree798c50901e2d723c2d1f4a788c93f91d2a2e0232 /tools/testing/selftests/ptp/testptp.mk
parentselftests: move prctl tests from Documentation/prctl (diff)
downloadkernel-qcow2-linux-8dbbf854202610a033a0788c33d8feb1548d3eeb.tar.gz
kernel-qcow2-linux-8dbbf854202610a033a0788c33d8feb1548d3eeb.tar.xz
kernel-qcow2-linux-8dbbf854202610a033a0788c33d8feb1548d3eeb.zip
selftests: move ptp tests from Documentation/ptp
Remove ptp from Makefile to move the test to selftests. Update ptp Makefile to work under selftests. ptp will not be run as part of selftests suite and will not be included in install targets. They can be built separately for now. Acked-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/ptp/testptp.mk')
-rw-r--r--tools/testing/selftests/ptp/testptp.mk33
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/testing/selftests/ptp/testptp.mk b/tools/testing/selftests/ptp/testptp.mk
new file mode 100644
index 000000000000..4ef2d9755421
--- /dev/null
+++ b/tools/testing/selftests/ptp/testptp.mk
@@ -0,0 +1,33 @@
+# PTP 1588 clock support - User space test program
+#
+# Copyright (C) 2010 OMICRON electronics GmbH
+#
+# 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+CC = $(CROSS_COMPILE)gcc
+INC = -I$(KBUILD_OUTPUT)/usr/include
+CFLAGS = -Wall $(INC)
+LDLIBS = -lrt
+PROGS = testptp
+
+all: $(PROGS)
+
+testptp: testptp.o
+
+clean:
+ rm -f testptp.o
+
+distclean: clean
+ rm -f $(PROGS)