Skip to content

Commit

Permalink
build: fix declaring special targets as ".PHONY"
Browse files Browse the repository at this point in the history
  • Loading branch information
thom311 committed Aug 31, 2023
1 parent 052a97c commit a735989
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -1089,6 +1089,8 @@ python-build:
cd "$(srcdir)/python"; \
python setup.py build

.PHONY: python-build

EXTRA_DIST += \
python/README \
\
Expand Down Expand Up @@ -1148,6 +1150,8 @@ check_local += check-local-build-headers

check-local: $(check_local)

.PHONY: $(check_local)

check_PROGRAMS += $(check_programs)
TESTS += $(check_programs)

Expand Down Expand Up @@ -1175,6 +1179,6 @@ EXTRA_DIST += \

check-progs: all $(check_PROGRAMS) $(check_LTLIBRARIES)

###############################################################################
.PHONY: check-progs

.PHONY = check-progs
###############################################################################

0 comments on commit a735989

Please sign in to comment.