mirror of
https://github.com/openwrt/packages.git
synced 2025-12-28 07:50:04 +04:00
sockread reads data from a Unix domain socket Signed-off-by: Moritz Warning <moritzwarning@web.de>
12 lines
147 B
Makefile
12 lines
147 B
Makefile
CC ?= gcc
|
|
CFLAGS ?= -O2 -Wall -pedantic
|
|
CFLAGS += -std=gnu99
|
|
|
|
.PHONY: clean
|
|
|
|
sockread:
|
|
$(CC) $(CFLAGS) main.c -o sockread
|
|
|
|
clean:
|
|
rm -f sockread
|