mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 05:54:39 +00:00
9bb0e2042e
This tool has remained uncommitted in my development tree for almost a year. Just minor polish and commit. It can be used to convert some geolocation IP lists to ACLs.
14 lines
159 B
Makefile
14 lines
159 B
Makefile
CC = gcc
|
|
OPTIMIZE = -O3
|
|
LDFLAGS = -s
|
|
|
|
OBJS = iprange
|
|
|
|
all: $(OBJS)
|
|
|
|
%: %.c
|
|
$(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
|
|
|
|
clean:
|
|
rm -f $(OBJS) *.o *.a *~
|