Annotation of embedaddon/libnet/src/Makefile.am, revision 1.1.1.2
1.1.1.2 ! misho 1: # $Id: Makefile.am,v 1.6 2004/11/09 07:05:07 mike Exp $
1.1 misho 2: #
3: # Libnet automake information file
4: # Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
5: # All rights reserved.
6: #
7: # Process this file with automake to produce a Makefile.in script.
8:
9: include $(top_srcdir)/Makefile.am.common
10:
1.1.1.2 ! misho 11: EXTRA_DIST = libnet_dll.c
1.1 misho 12:
1.1.1.2 ! misho 13: lib_LTLIBRARIES = libnet.la
! 14:
! 15: libnet_la_SOURCES = libnet_asn1.c \
1.1 misho 16: libnet_build_802.1q.c \
17: libnet_build_802.1x.c \
18: libnet_build_802.2.c \
19: libnet_build_802.3.c \
20: libnet_build_arp.c \
21: libnet_build_bgp.c \
22: libnet_build_cdp.c \
23: libnet_build_data.c \
24: libnet_build_dhcp.c \
25: libnet_build_dns.c \
26: libnet_build_ethernet.c \
27: libnet_build_fddi.c \
28: libnet_build_gre.c \
1.1.1.2 ! misho 29: libnet_build_hsrp.c \
1.1 misho 30: libnet_build_icmp.c \
31: libnet_build_igmp.c \
32: libnet_build_ip.c \
33: libnet_build_ipsec.c \
34: libnet_build_isl.c \
1.1.1.2 ! misho 35: libnet_build_link.c \
1.1 misho 36: libnet_build_mpls.c \
37: libnet_build_ntp.c \
38: libnet_build_ospf.c \
39: libnet_build_rip.c \
40: libnet_build_rpc.c \
41: libnet_build_sebek.c \
42: libnet_build_snmp.c \
43: libnet_build_stp.c \
44: libnet_build_tcp.c \
45: libnet_build_token_ring.c \
46: libnet_build_udp.c \
47: libnet_build_vrrp.c \
48: libnet_advanced.c \
49: libnet_checksum.c \
50: libnet_cq.c \
51: libnet_crc.c \
52: libnet_error.c \
53: libnet_if_addr.c \
54: libnet_init.c \
55: libnet_internal.c \
56: libnet_pblock.c \
57: libnet_port_list.c \
58: libnet_prand.c \
59: libnet_raw.c \
60: libnet_resolve.c \
61: libnet_version.c \
62: libnet_write.c
63:
1.1.1.2 ! misho 64: libnet_la_LIBADD = @LTLIBOBJS@
! 65:
! 66: # Note: this version-info should NOT simply be the version of the libnet
! 67: # package. See:
! 68: # http://www.sourceware.org/autobook/autobook/autobook_91.html
! 69: # for the rules.
! 70: #
! 71: # Summary:
! 72: #
! 73: # Form is current:revision:age.
! 74: #
! 75: # New APIs, backwards compatible, increment current and age.
! 76: # Bug fix, no new APIs, increment revision.
! 77: #
! 78: # Note:
! 79: # 1.1.2.1-fork is 5:0:4
! 80: # 1.1.3 will be 6:0:5 -> new interfaces, backwards compatible
! 81: # 1.1.4 was 6:0:5 -> probably an error on my part
! 82: # 1.1.5 is 7:0:6 -> new APIs, backwards compat
! 83: # 1.1.6 is 8:0:7 -> new APIs, backwards compat
1.1 misho 84:
1.1.1.2 ! misho 85: libnet_la_LDFLAGS = -version-info 8:0:7 -Wl
1.1 misho 86:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>