diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..710ba1d --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +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