autotools: Make all "pregenerated" targets .PHONY
This follows the automake conventions more, see: https://www.gnu.org/software/automake/manual/html_node/Clean.html
This commit is contained in:
parent
e1b9ce8811
commit
8764034ed5
10
Makefile.am
10
Makefile.am
@ -1,5 +1,3 @@
|
|||||||
.PHONY: clean-precomp precomp
|
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I build-aux/m4
|
ACLOCAL_AMFLAGS = -I build-aux/m4
|
||||||
|
|
||||||
# AM_CFLAGS will be automatically prepended to CFLAGS by Automake when compiling some foo
|
# AM_CFLAGS will be automatically prepended to CFLAGS by Automake when compiling some foo
|
||||||
@ -218,10 +216,10 @@ precomp: $(PRECOMP)
|
|||||||
# e.g., after `make maintainer-clean`).
|
# e.g., after `make maintainer-clean`).
|
||||||
BUILT_SOURCES = $(PRECOMP)
|
BUILT_SOURCES = $(PRECOMP)
|
||||||
|
|
||||||
maintainer-clean-local: clean-precomp
|
.PHONY: clean-precomp
|
||||||
|
|
||||||
clean-precomp:
|
clean-precomp:
|
||||||
rm -f $(PRECOMP)
|
rm -f $(PRECOMP)
|
||||||
|
maintainer-clean-local: clean-precomp
|
||||||
|
|
||||||
### Pregenerated test vectors
|
### Pregenerated test vectors
|
||||||
### (see the comments in the previous section for detailed rationale)
|
### (see the comments in the previous section for detailed rationale)
|
||||||
@ -234,10 +232,10 @@ testvectors: $(TESTVECTORS)
|
|||||||
|
|
||||||
BUILT_SOURCES += $(TESTVECTORS)
|
BUILT_SOURCES += $(TESTVECTORS)
|
||||||
|
|
||||||
maintainer-clean-local: clean-testvectors
|
.PHONY: clean-testvectors
|
||||||
|
|
||||||
clean-testvectors:
|
clean-testvectors:
|
||||||
rm -f $(TESTVECTORS)
|
rm -f $(TESTVECTORS)
|
||||||
|
maintainer-clean-local: clean-testvectors
|
||||||
|
|
||||||
### Additional files to distribute
|
### Additional files to distribute
|
||||||
EXTRA_DIST = autogen.sh CHANGELOG.md SECURITY.md
|
EXTRA_DIST = autogen.sh CHANGELOG.md SECURITY.md
|
||||||
|
Loading…
x
Reference in New Issue
Block a user