diff options
author | jilles <jilles@FreeBSD.org> | 2009-08-25 20:33:37 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2009-08-25 20:33:37 +0000 |
commit | 7570cc2d3276876d8e3ee4358f50c8c29ef684c8 (patch) | |
tree | 16c029b213c69885bd547dee7ea49283f5b8088d /tools/regression/poll/Makefile | |
parent | 8184e58b3aca79bbb4865b22468b7a7b74040fe2 (diff) | |
download | FreeBSD-src-7570cc2d3276876d8e3ee4358f50c8c29ef684c8.zip FreeBSD-src-7570cc2d3276876d8e3ee4358f50c8c29ef684c8.tar.gz |
Add some tests for poll(2)/shutdown(2) interaction.
Diffstat (limited to 'tools/regression/poll/Makefile')
-rw-r--r-- | tools/regression/poll/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/regression/poll/Makefile b/tools/regression/poll/Makefile index 71192a9..45f743f 100644 --- a/tools/regression/poll/Makefile +++ b/tools/regression/poll/Makefile @@ -3,14 +3,15 @@ # Nothing yet works with gmake for the path to the sources. .PATH: .. -PROG= pipepoll pipeselect +PROG= pipepoll pipeselect sockpoll CFLAGS+= -Werror -Wall all: ${PROG} pipepoll: pipepoll.c pipeselect: pipeselect.c +sockpoll: sockpoll.c -pipepoll pipeselect: +pipepoll pipeselect sockpoll: ${CC} ${CFLAGS} ${LDFLAGS} -o $@ $@.c test: all |