sendfile: added server implementation
[p2p-kernel-protocol.git] / sendfile / Makefile
diff --git a/sendfile/Makefile b/sendfile/Makefile
new file mode 100644 (file)
index 0000000..22d865b
--- /dev/null
@@ -0,0 +1,12 @@
+all: client server
+
+.PHONY: client server clean
+client server:
+       make -C $@
+
+run: client server
+       @./test.sh
+
+clean:
+       -make -C client clean
+       -make -C server clean