Files
ports/Mk/bsd.local.mk.sample
T
Po-Chuan Hsieh 31cfd497be Mk/bsd.local.mk.sample: Fix typo
Approved by:	portmgr (blanket)
2025-12-02 20:18:18 +08:00

27 lines
680 B
Plaintext

# bsd.local.mk.sample - Sandbox for local modification to ports framework.
#
# To use this feature, copy this file to Mk/bsd.local.mk, and modify as required
#
.if !defined(_POSTMKINCLUDED) && !defined(Local_Pre_Include)
Local_Pre_Include= bsd.local.mk
#
# Here is where any code that needs to run at bsd.port.pre.mk inclusion
# time should live.
#
.endif # !defined(_POSTMKINCLUDED) && !defined(Local_Pre_Include)
.if defined(_POSTMKINCLUDED) && !defined(Local_Post_Include)
Local_Post_Include= bsd.local.mk
#
# here is where any code that needs to run at bsd.port.post.mk inclusion
# time should live.
#
.endif # defined(_POSTMKINCLUDED) && !defined(Local_Post_Include)