aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/net-socket/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/selftests/net-socket/Makefile')
-rw-r--r--tools/testing/selftests/net-socket/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/testing/selftests/net-socket/Makefile b/tools/testing/selftests/net-socket/Makefile
deleted file mode 100644
index 2450fd8bb10a..000000000000
--- a/tools/testing/selftests/net-socket/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
1# Makefile for net-socket selftests
2
3CC = $(CROSS_COMPILE)gcc
4CFLAGS = -Wall
5
6NET_SOCK_PROGS = socket
7
8all: $(NET_SOCK_PROGS)
9%: %.c
10 $(CC) $(CFLAGS) -o $@ $^
11
12run_tests: all
13 @/bin/sh ./run_netsocktests || echo "sockettests: [FAIL]"
14
15clean:
16 $(RM) $(NET_SOCK_PROGS)