mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-16 16:34:42 +00:00
233e868895
The following components were moved to admin/ because they're generally used in field by admins: iprange/ netsnmp-perl/ selinux/ systemd/ wireshark-dissectors/ syntax-highlight/ release-estimator/
14 lines
167 B
Makefile
14 lines
167 B
Makefile
CC = cc
|
|
OPTIMIZE = -O3
|
|
LDFLAGS = -s
|
|
|
|
OBJS = iprange ip6range
|
|
|
|
all: $(OBJS)
|
|
|
|
%: %.c
|
|
$(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
|
|
|
|
clean:
|
|
rm -f $(OBJS) *.o *.a *~
|