diff options
Diffstat (limited to 'Mk/bsd.local.mk.sample')
| -rw-r--r-- | Mk/bsd.local.mk.sample | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Mk/bsd.local.mk.sample b/Mk/bsd.local.mk.sample new file mode 100644 index 000000000000..77d6a5f7354e --- /dev/null +++ b/Mk/bsd.local.mk.sample @@ -0,0 +1,26 @@ +# bsd.local.mk.local - 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) |
