blob: db97c4d7740768d5b745ecb97dada20805999f01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include $(top_srcdir)/Make_global.am
AM_CFLAGS=-fPIC -Wall
LIBS=
pkglib_LTLIBRARIES = ct_proto_tcp.la ct_proto_udp.la \
ct_proto_icmp.la
ct_proto_tcp_la_SOURCES = libct_proto_tcp.c
ct_proto_tcp_la_LDFLAGS = -module -avoid-version
ct_proto_udp_la_SOURCES = libct_proto_udp.c
ct_proto_udp_la_LDFLAGS = -module -avoid-version
ct_proto_icmp_la_SOURCES = libct_proto_icmp.c
ct_proto_icmp_la_LDFLAGS = -module -avoid-version
|