mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05:00
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/
13 lines
167 B
Makefile
13 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 *~
|