@@ -31,8 +31,11 @@ lib_LTLIBRARIES =
noinst_LTLIBRARIES =
sbin_PROGRAMS =
check_PROGRAMS =
+check_LTLIBRARIES =
dist_man_MANS =
CLEANFILES =
+check_local =
+check_more =
###############################################################################
@@ -409,3 +412,23 @@ EXTRA_DIST += \
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libnftables.pc
+
+###############################################################################
+
+build-all: all $(check_PROGRAMS) $(check_LTLIBRARIES)
+
+.PHONY: build-all
+
+###############################################################################
+
+check-local: build-all $(check_local)
+
+.PHONY: check-local $(check_local)
+
+check-more: build-all $(check_more)
+
+.PHONY: check-more $(check_more)
+
+check-all: check check-more
+
+.PHONY: check-all
Add targets "check-local" and "check-more", which later will hook up additional tests. For now, they are empty targets. Signed-off-by: Thomas Haller <thaller@redhat.com> --- Makefile.am | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+)