version 1.1.1.1, 2012/02/21 22:14:23
|
version 1.1.1.2, 2013/07/22 11:54:42
|
Line 8
|
Line 8
|
|
|
include $(top_srcdir)/Makefile.am.common |
include $(top_srcdir)/Makefile.am.common |
|
|
lib_LIBRARIES = libnet.a | EXTRA_DIST = libnet_dll.c |
|
|
libnet_a_SOURCES = libnet_asn1.c \ | lib_LTLIBRARIES = libnet.la |
| |
| libnet_la_SOURCES = libnet_asn1.c \ |
libnet_build_802.1q.c \ |
libnet_build_802.1q.c \ |
libnet_build_802.1x.c \ |
libnet_build_802.1x.c \ |
libnet_build_802.2.c \ |
libnet_build_802.2.c \ |
Line 24 libnet_a_SOURCES = libnet_asn1.c \
|
Line 26 libnet_a_SOURCES = libnet_asn1.c \
|
libnet_build_ethernet.c \ |
libnet_build_ethernet.c \ |
libnet_build_fddi.c \ |
libnet_build_fddi.c \ |
libnet_build_gre.c \ |
libnet_build_gre.c \ |
|
libnet_build_hsrp.c \ |
libnet_build_icmp.c \ |
libnet_build_icmp.c \ |
libnet_build_igmp.c \ |
libnet_build_igmp.c \ |
libnet_build_ip.c \ |
libnet_build_ip.c \ |
libnet_build_ipsec.c \ |
libnet_build_ipsec.c \ |
libnet_build_isl.c \ |
libnet_build_isl.c \ |
|
libnet_build_link.c \ |
libnet_build_mpls.c \ |
libnet_build_mpls.c \ |
libnet_build_ntp.c \ |
libnet_build_ntp.c \ |
libnet_build_ospf.c \ |
libnet_build_ospf.c \ |
Line 57 libnet_a_SOURCES = libnet_asn1.c \
|
Line 61 libnet_a_SOURCES = libnet_asn1.c \
|
libnet_version.c \ |
libnet_version.c \ |
libnet_write.c |
libnet_write.c |
|
|
EXTRA_libnet_a_SOURCES = libnet_link_bpf.c \ | libnet_la_LIBADD = @LTLIBOBJS@ |
libnet_link_dlpi.c \ | |
libnet_link_linux.c \ | |
libnet_link_nit.c \ | |
libnet_link_none.c \ | |
libnet_link_pf.c \ | |
libnet_link_snit.c \ | |
libnet_link_snoop.c \ | |
libnet_link_win32.c | |
|
|
libnet_a_LIBADD = @LIBOBJS@ | # Note: this version-info should NOT simply be the version of the libnet |
| # package. See: |
| # http://www.sourceware.org/autobook/autobook/autobook_91.html |
| # for the rules. |
| # |
| # Summary: |
| # |
| # Form is current:revision:age. |
| # |
| # New APIs, backwards compatible, increment current and age. |
| # Bug fix, no new APIs, increment revision. |
| # |
| # Note: |
| # 1.1.2.1-fork is 5:0:4 |
| # 1.1.3 will be 6:0:5 -> new interfaces, backwards compatible |
| # 1.1.4 was 6:0:5 -> probably an error on my part |
| # 1.1.5 is 7:0:6 -> new APIs, backwards compat |
| # 1.1.6 is 8:0:7 -> new APIs, backwards compat |
| |
| libnet_la_LDFLAGS = -version-info 8:0:7 -Wl |
|
|