iblock/Makefile

12 lines
172 B
Makefile
Raw Normal View History

2021-02-25 23:10:27 +00:00
all: iblock
iblock:
${CC} -o iblock main.c
clean:
rm -f iblock
test: clean iblock
@printf "hello\n" | nc -4 localhost 1965
@printf "hello\n" | nc -6 localhost 1965