diff options
Diffstat (limited to 'tools/testing/selftests/net-socket/Makefile')
-rw-r--r-- | tools/testing/selftests/net-socket/Makefile | 16 |
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 | |||
3 | CC = $(CROSS_COMPILE)gcc | ||
4 | CFLAGS = -Wall | ||
5 | |||
6 | NET_SOCK_PROGS = socket | ||
7 | |||
8 | all: $(NET_SOCK_PROGS) | ||
9 | %: %.c | ||
10 | $(CC) $(CFLAGS) -o $@ $^ | ||
11 | |||
12 | run_tests: all | ||
13 | @/bin/sh ./run_netsocktests || echo "sockettests: [FAIL]" | ||
14 | |||
15 | clean: | ||
16 | $(RM) $(NET_SOCK_PROGS) | ||