summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2023-08-31 08:49:53 +0200
committerThomas Haller <thaller@redhat.com>2023-08-31 08:49:53 +0200
commita735989cff5576fa2a8f9188eccf1fb30832f426 (patch)
tree862a02e14fa643a9c001d7b6d78cce15bb116994
parent052a97cb6554386c70d531e7c1b34a6afa1dbeb0 (diff)
downloadlibnl-a735989cff5576fa2a8f9188eccf1fb30832f426.tar.gz
build: fix declaring special targets as ".PHONY"
-rw-r--r--Makefile.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 545a78b3..0e5998ae 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1089,6 +1089,8 @@ python-build:
cd "$(srcdir)/python"; \
python setup.py build
+.PHONY: python-build
+
EXTRA_DIST += \
python/README \
\
@@ -1148,6 +1150,8 @@ check_local += check-local-build-headers
check-local: $(check_local)
+.PHONY: $(check_local)
+
check_PROGRAMS += $(check_programs)
TESTS += $(check_programs)
@@ -1175,6 +1179,6 @@ EXTRA_DIST += \
check-progs: all $(check_PROGRAMS) $(check_LTLIBRARIES)
-###############################################################################
+.PHONY: check-progs
-.PHONY = check-progs
+###############################################################################