"Fossies" - the Fresh Open Source Software Archive 
Member "libspf2-1.2.10/src/libspf2/Makefile.am" (28 Jan 2012, 2330 Bytes) of package /linux/privat/libspf2-1.2.10.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 # Makefile prototype
2
3 AUTOMAKE_OPTIONS = foreign
4
5 INCLUDES = -I$(top_srcdir)/src/include -I$(top_srcdir)/src
6
7 lib_LTLIBRARIES = libspf2.la
8
9 libspf2_la_SOURCES = \
10 spf_compile.c \
11 spf_dns.c \
12 spf_dns_cache.c \
13 spf_dns_null.c \
14 spf_dns_resolv.c \
15 spf_dns_rr.c \
16 spf_dns_test.c \
17 spf_dns_windns.c \
18 spf_dns_zone.c \
19 spf_expand.c \
20 spf_get_exp.c \
21 spf_get_spf.c \
22 spf_id2str.c \
23 spf_interpret.c \
24 spf_log.c \
25 spf_log_default.c \
26 spf_log_stdio.c \
27 spf_log_syslog.c \
28 spf_print.c \
29 spf_record.c \
30 spf_request.c \
31 spf_response.c \
32 spf_server.c \
33 spf_strerror.c \
34 spf_utils.c \
35 spf_win32.c
36
37 libspf2_la_LIBADD = $(top_builddir)/src/libreplace/libreplace.la
38
39
40
41 libspf2_la_LDFLAGS = -version-info 3:0:1
42
43 # Copied from the libtool info file:
44 #
45 # This flag accepts an argument of the form
46 # `CURRENT[:REVISION[:AGE]]'. So, passing `-version-info 3:12:1' sets
47 # CURRENT to 3, REVISION to 12, and AGE to 1.
48 #
49 # If either REVISION or AGE are omitted, they default to 0. Also note
50 # that AGE must be less than or equal to the CURRENT interface number.
51 #
52 # Here are a set of rules to help you update your library version
53 # information:
54 #
55 # 1. Start with version information of `0:0:0' for each libtool library.
56 #
57 # 2. Update the version information only immediately before a public
58 # release of your software. More frequent updates are unnecessary,
59 # and only guarantee that the current interface number gets larger
60 # faster.
61 #
62 # 3. If the library source code has changed at all since the last
63 # update, then increment REVISION (`C:R:A' becomes `C:r+1:A').
64 #
65 # 4. If any interfaces have been added, removed, or changed since the
66 # last update, increment CURRENT, and set REVISION to 0.
67 #
68 # 5. If any interfaces have been added since the last public release,
69 # then increment AGE.
70 #
71 # 6. If any interfaces have been removed since the last public release,
72 # then set AGE to 0.
73 #
74 # *_Never_* try to set the interface numbers so that they correspond
75 # to the release number of your package. This is an abuse that only
76 # fosters misunderstanding of the purpose of library versions. Instead,
77 # use the `-release' flag (*note Release numbers::), but be warned that
78 # every release of your package will not be binary compatible with any
79 # other release.
80 #