~xtables-addons/xtables-addons/packaging

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
# -*- Makefile -*-
# AUTOMAKE

export AM_CPPFLAGS
export AM_CFLAGS
XA_SRCDIR = ${srcdir}
XA_TOPSRCDIR = ${top_srcdir}
XA_ABSTOPSRCDIR = ${abs_top_srcdir}
export XA_SRCDIR
export XA_TOPSRCDIR
export XA_ABSTOPSRCDIR

_mcall = -f ${top_builddir}/Makefile.iptrules

all-local: user-all-local

install-exec-local: user-install-local

clean-local: user-clean-local

user-all-local:
	${MAKE} ${_mcall} all;

# Have no user-install-data-local ATM
user-install-local: user-install-exec-local

user-install-exec-local:
	${MAKE} ${_mcall} install;

user-clean-local:
	${MAKE} ${_mcall} clean;