sockread: add new package

sockread reads data from a Unix domain socket

Signed-off-by: Moritz Warning <moritzwarning@web.de>
This commit is contained in:
Moritz Warning
2015-01-13 21:49:44 +01:00
parent 1c40fc1022
commit e5c39cc999
3 changed files with 101 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
CC ?= gcc
CFLAGS ?= -O2 -Wall -pedantic
CFLAGS += -std=gnu99
.PHONY: clean
sockread:
$(CC) $(CFLAGS) main.c -o sockread
clean:
rm -f sockread