diff options
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 |