mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-05 12:16:38 +02:00
32 lines
582 B
Makefile
32 lines
582 B
Makefile
# -*- 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;
|