mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 05:54:39 +00:00
1a0fb5dd35
It can be used to convert some Maxmind geolocation IPv6 lists using the CVS format to IPv6 networks format.
14 lines
160 B
Makefile
14 lines
160 B
Makefile
CC = gcc
|
|
OPTIMIZE = -O3
|
|
LDFLAGS = -s
|
|
|
|
OBJS = ip6range
|
|
|
|
all: $(OBJS)
|
|
|
|
%: %.c
|
|
$(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
|
|
|
|
clean:
|
|
rm -f $(OBJS) *.o *.a *~
|