ip2net iplist groupper

This commit is contained in:
bolvan
2019-04-06 16:08:14 +03:00
parent ab430165a7
commit 92edb373e1
15 changed files with 434 additions and 14 deletions

12
ip2net/Makefile Normal file
View File

@@ -0,0 +1,12 @@
CC ?= gcc
CFLAGS += -s
LIBS =
SRC_FILES = *.c
all: ip2net
ip2net: $(SRC_FILES)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
clean:
rm -f ip2net *.o