CONTRIB: debug: split poll from flags

Now poll is its own project and doesn't share the "flags" Makefile
any more. One of the issues was that it was making references to the
haproxy include path which is not needed here.
diff --git a/contrib/debug/Makefile b/contrib/debug/Makefile
index 74dd6ac..9171eaf 100644
--- a/contrib/debug/Makefile
+++ b/contrib/debug/Makefile
@@ -3,15 +3,12 @@
 CC       = gcc
 OPTIMIZE = -O2
 DEFINE   =
-OBJS     = flags poll
+OBJS     = flags
 
 all: $(OBJS)
 
 flags: flags.c
 	$(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
 
-poll: poll.c
-	$(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
-
 clean:
 	rm -f $(OBJS) *.[oas] *~
diff --git a/contrib/poll/Makefile b/contrib/poll/Makefile
new file mode 100644
index 0000000..fdee514
--- /dev/null
+++ b/contrib/poll/Makefile
@@ -0,0 +1,11 @@
+CC       = cc
+OPTIMIZE = -O2 -g
+DEFINE   =
+INCLUDE  =
+OBJS     = poll
+
+poll: poll.c
+	$(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
+
+clean:
+	rm -f $(OBJS) *.[oas] *~
diff --git a/contrib/debug/poll.c b/contrib/poll/poll.c
similarity index 100%
rename from contrib/debug/poll.c
rename to contrib/poll/poll.c