diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-06-06 21:13:34 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-06-06 21:13:34 +0200 |
commit | cdf2238a33d63947ad70b0c26a3b4f4fe1f18454 (patch) | |
tree | b41c1e34c74c41fc3c181f31b84093015282752f /c/pipe/Makefile | |
parent | 9f9bcf679e6f627d7bd8b6e21c80906946db65b7 (diff) |
Add new dummy program
Diffstat (limited to 'c/pipe/Makefile')
-rw-r--r-- | c/pipe/Makefile | 8 |
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 |