iblock/Makefile

23 lines
461 B
Makefile
Raw Normal View History

CFLAGS += -pedantic -Wall -Wextra -Wmissing-prototypes \
-Werror -Wshadow -Wstrict-overflow -fno-strict-aliasing \
-Wstrict-prototypes -Wwrite-strings \
-Os
2022-08-22 15:04:26 +02:00
PREFIX = /usr/local
2021-02-26 00:10:27 +01:00
all: iblock
iblock: main.c
2022-08-25 10:04:53 +02:00
${CC} ${CFLAGS} -o iblock main.c
2021-02-26 00:10:27 +01:00
clean:
rm -f iblock
2022-08-18 10:57:50 +02:00
install: iblock
install -o root -g wheel iblock ${PREFIX}/sbin/
2021-02-26 00:10:27 +01:00
test: clean iblock
@printf "hello\n" | nc -4 localhost 666
@printf "hello\n" | nc -6 localhost 666