92e07f5fe6
wrote `ip46tables` C minimal program to handle both ipv4 and ipv6 at the same time. fix #22
10 lines
198 B
Makefile
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 .
|