aboutsummaryrefslogtreecommitdiff
path: root/c/fd-over-sock/Makefile
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-12-11 17:24:34 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-12-11 17:24:34 +0100
commit2fb71458d07f4ddc6f04773ae75341300fda8905 (patch)
tree125d601da3c2089b48177e36bf5559cc40a32080 /c/fd-over-sock/Makefile
parente10f9802088722e85fd4f2f9cb006d2bdca37d3c (diff)
Add fc-over-sock
Diffstat (limited to 'c/fd-over-sock/Makefile')
-rw-r--r--c/fd-over-sock/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/c/fd-over-sock/Makefile b/c/fd-over-sock/Makefile
new file mode 100644
index 0000000..3c353be
--- /dev/null
+++ b/c/fd-over-sock/Makefile
@@ -0,0 +1,10 @@
+include ../base.mk
+
+all: client server
+client: client.c
+ $(CC) $(CFLAGS) -o $@ $<
+server: server.c
+ $(CC) $(CFLAGS) -o $@ $<
+
+clean:
+ rm -f client server