-
Notifications
You must be signed in to change notification settings - Fork 50
/
Makefile.am
78 lines (70 loc) · 1.59 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#
# Copyright (C) 2015 Alon Bar-Lev <[email protected]>
#
AUTOMAKE_OPTIONS=foreign dist-xz dist-bzip2 1.10
ACLOCAL_AMFLAGS = -I m4
MAINTAINERCLEANFILES= \
config.log config.status \
$(srcdir)/Makefile.in \
$(srcdir)/config.h.in $(srcdir)/config.h.in~ $(srcdir)/configure \
$(srcdir)/install-sh $(srcdir)/ltmain.sh $(srcdir)/missing \
$(srcdir)/compile $(srcdir)/depcomp $(srcdir)/aclocal.m4 \
$(srcdir)/config.guess $(srcdir)/config.sub \
$(srcdir)/m4/ltsugar.m4 $(srcdir)/m4/libtool.m4 \
$(srcdir)/m4/ltversion.m4 $(srcdir)/m4/lt~obsolete.m4 \
$(srcdir)/m4/ltoptions.m4 \
$(srcdir)/pkcs11-helper.spec $(srcdir)/config-w32-vc.h \
iprange.1
AM_H2MFLAGS = \
--no-info
iprange_DESCRIPTION = "manage IP ranges"
bin_PROGRAMS = iprange
dist_noinst_DATA = iprange.spec
if ENABLE_MAN
man_MANS = iprange.1
endif
iprange_SOURCES = \
iprange.c \
iprange.h \
ipset.c \
ipset.h \
ipset_binary.c \
ipset_binary.h \
ipset_combine.c \
ipset_combine.h \
ipset_common.c \
ipset_common.h \
ipset_copy.c \
ipset_copy.h \
ipset_diff.c \
ipset_diff.h \
ipset_exclude.c \
ipset_exclude.h \
ipset_load.c \
ipset_load.h \
ipset_merge.c \
ipset_merge.h \
ipset_optimize.c \
ipset_optimize.h \
ipset_print.c \
ipset_print.h \
ipset_reduce.c \
ipset_reduce.h \
$(NULL)
EXTRA_DIST = \
.gitignore \
README.md \
iprange-9999.ebuild \
autogen.sh \
$(man_MANS) \
$(NULL)
if MAINTAINER_MODE
%.1: %
$(HELP2MAN) \
-s 1 \
$(AM_H2MFLAGS) \
-I $(top_srcdir)/$*.h2m \
-n $(if $($(subst -,_,$*)_DESCRIPTION), $($(subst -,_,$*)_DESCRIPTION), "manual page for $*") \
-o $@ \
$(top_builddir)/$<
endif