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 @@
-# Makefile for net-socket selftests
-
-CC = $(CROSS_COMPILE)gcc
-CFLAGS = -Wall
-
-NET_SOCK_PROGS = socket
-
-all: $(NET_SOCK_PROGS)
-%: %.c
- $(CC) $(CFLAGS) -o $@ $^
-
-run_tests: all
- @/bin/sh ./run_netsocktests || echo "sockettests: [FAIL]"
-
-clean:
- $(RM) $(NET_SOCK_PROGS)