You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
438 B
Makefile
23 lines
438 B
Makefile
PREFIX = /usr/local
|
|
|
|
CFLAGS = -pedantic -Wall -Wextra -Wmissing-prototypes \
|
|
-Werror -Wshadow -Wstrict-overflow -fno-strict-aliasing \
|
|
-Wstrict-prototypes -Wwrite-strings \
|
|
-Os
|
|
|
|
|
|
all: iblock
|
|
|
|
iblock: main.c
|
|
${CC} ${CFLAGS} -o iblock main.c
|
|
|
|
clean:
|
|
rm -f iblock
|
|
|
|
install: iblock
|
|
install -o root -g wheel iblock ${PREFIX}/sbin/
|
|
|
|
test: clean iblock
|
|
@printf "hello\n" | nc -4 localhost 666
|
|
@printf "hello\n" | nc -6 localhost 666
|