diff options
author | jlam <jlam> | 2006-07-19 14:54:56 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-07-19 14:54:56 +0000 |
commit | d39cdc057066bd26978f63d4d490a9d3481e7469 (patch) | |
tree | 58da8a051c93c21ae6dd4e9a7b5e6486e34422d3 | |
parent | 788401fbee405dc6d29afdde3f8f8c83596f27a8 (diff) | |
download | pkgsrc-d39cdc057066bd26978f63d4d490a9d3481e7469.tar.gz |
The "makedistinfo" target should actually be named "distinfo" to match
the old bsd.pkg.mk behavior (noted by adrianp in private email). Keep
"makedistinfo" as an alias for "distinfo".
While here, sprinkle some .PHONY declarations for correctness.
-rw-r--r-- | mk/checksum/bsd.checksum.mk | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/mk/checksum/bsd.checksum.mk b/mk/checksum/bsd.checksum.mk index cb39aad185d..0d2048f219e 100644 --- a/mk/checksum/bsd.checksum.mk +++ b/mk/checksum/bsd.checksum.mk @@ -1,11 +1,11 @@ -# $NetBSD: bsd.checksum.mk,v 1.2 2006/07/13 18:42:45 jlam Exp $ +# $NetBSD: bsd.checksum.mk,v 1.3 2006/07/19 14:54:56 jlam Exp $ # # This Makefile fragment is included by bsd.pkg.mk and defines the # relevant variables and targets for the "checksum" phase. # # The following are the "public" targets provided by this module: # -# checksum, makesum, makepatchsum +# checksum, makesum, makepatchsum, distinfo # ###################################################################### @@ -33,13 +33,15 @@ makesum makepatchsum: .endif ###################################################################### -### makedistinfo (PUBLIC) +### distinfo (PUBLIC) ###################################################################### -### makedistinfo is a public target to create ${DISTINFO_FILE}. +### distinfo is a public target to create ${DISTINFO_FILE}. ### -makedistinfo: makepatchsum makesum +.PHONY: distinfo +distinfo: makepatchsum makesum @${DO_NADA} -# Some short aliases for "makepatchsum" and "makedistinfo". +# Some short aliases for "makepatchsum" and "distinfo". +.PHONY: mps mdi makedistinfo mps: makepatchsum -mdi: makedistinfo +mdi makedistinfo: distinfo |