MINOR: spoa-server: Clone the v1.7 spoa-example project
This is a working base.
diff --git a/contrib/spoa_server/Makefile b/contrib/spoa_server/Makefile
new file mode 100644
index 0000000..e6b7c53
--- /dev/null
+++ b/contrib/spoa_server/Makefile
@@ -0,0 +1,24 @@
+DESTDIR =
+PREFIX = /usr/local
+BINDIR = $(PREFIX)/bin
+
+CC = gcc
+LD = $(CC)
+
+CFLAGS = -g -O2 -Wall -Werror -pthread
+LDFLAGS = -lpthread
+
+OBJS = spoa.o
+
+
+spoa: $(OBJS)
+ $(LD) $(LDFLAGS) -o $@ $^
+
+install: spoa
+ install spoa $(DESTDIR)$(BINDIR)
+
+clean:
+ rm -f spoa $(OBJS)
+
+%.o: %.c
+ $(CC) $(CFLAGS) -c -o $@ $<