aboutsummaryrefslogtreecommitdiff
path: root/c/pipe/Makefile
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-06 21:13:34 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-06 21:13:34 +0200
commitcdf2238a33d63947ad70b0c26a3b4f4fe1f18454 (patch)
treeb41c1e34c74c41fc3c181f31b84093015282752f /c/pipe/Makefile
parent9f9bcf679e6f627d7bd8b6e21c80906946db65b7 (diff)
Add new dummy program
Diffstat (limited to 'c/pipe/Makefile')
-rw-r--r--c/pipe/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/c/pipe/Makefile b/c/pipe/Makefile
new file mode 100644
index 0000000..2d32167
--- /dev/null
+++ b/c/pipe/Makefile
@@ -0,0 +1,8 @@
+include ../base.mk
+
+all: pipe
+pipe: pipe.c
+ $(CC) $(CFLAGS) -lpthread -o $@ $<
+
+clean:
+ rm -f pipe