mirror of
https://github.com/openharmony/third_party_iptables.git
synced 2026-07-25 23:25:44 -04:00
e4107a428d
Signed-off-by: HuangHaitao <huanghaitao16@huawei.com>
20 lines
520 B
Makefile
20 lines
520 B
Makefile
# -*- Makefile -*-
|
|
|
|
include_HEADERS = xtables.h
|
|
nodist_include_HEADERS = xtables-version.h
|
|
|
|
if ENABLE_LIBIPQ
|
|
include_HEADERS += libipq/libipq.h
|
|
endif
|
|
|
|
nobase_include_HEADERS = \
|
|
libiptc/ipt_kernel_headers.h libiptc/libiptc.h \
|
|
libiptc/libip6tc.h libiptc/libxtc.h libiptc/xtcshared.h
|
|
|
|
EXTRA_DIST = iptables linux iptables.h ip6tables.h xtables_internal.h
|
|
|
|
uninstall-hook:
|
|
dir=${includedir}/libiptc; { \
|
|
test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; \
|
|
} || rmdir -p --ignore-fail-on-non-empty "$$dir"
|