reaction/Makefile
ppom 92e07f5fe6 ip46tables
wrote `ip46tables` C minimal program to handle both ipv4 and ipv6 at the same time.
fix #22
2023-10-05 12:00:00 +02:00

10 lines
198 B
Makefile

all: reaction ip46tables
clean:
rm -f reaction ip46tables
ip46tables: ip46tables.d/ip46tables.c
gcc ip46tables.d/ip46tables.c -o ip46tables
reaction: app/* reaction.go go.mod go.sum
go build .