GIF89a;
Direktori : /lib/modules/3.10.0-1160.81.1.el7.centos.plus.x86_64/source/tools/testing/selftests/net/ |
Current File : //lib/modules/3.10.0-1160.81.1.el7.centos.plus.x86_64/source/tools/testing/selftests/net/Makefile |
# Makefile for net selftests CC = $(CROSS_COMPILE)gcc CFLAGS = -Wall -O2 -g CFLAGS += -I../../../../usr/include/ NET_PROGS = socket psock_fanout psock_tpacket all: $(NET_PROGS) %: %.c $(CC) $(CFLAGS) -o $@ $^ run_tests: all @/bin/sh ./run_netsocktests || echo "sockettests: [FAIL]" @/bin/sh ./run_afpackettests || echo "afpackettests: [FAIL]" clean: $(RM) $(NET_PROGS)