mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-12 14:35:14 +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/
18 lines
365 B
Makefile
18 lines
365 B
Makefile
CFLAGS = `pkg-config --cflags wireshark` -g -fPIC $(OPTS)
|
|
LDFLAGS = `pkg-config --libs wireshark`
|
|
|
|
NAME = packet-happp.so
|
|
OBJS = packet-happp.o
|
|
|
|
plugins=$(HOME)/.wireshark/plugins/
|
|
|
|
$(NAME): $(OBJS)
|
|
$(CC) -shared $(LDFLAGS) $(OBJS) -o $@
|
|
|
|
install: $(NAME)
|
|
install -d $(DESTDIR)$(plugins)
|
|
install -m 0755 $(NAME) $(DESTDIR)$(plugins)
|
|
|
|
clean:
|
|
rm $(NAME) $(OBJS)
|