1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
freebsd-ports/Mk/bsd.local.mk
2021-08-31 09:05:00 -05:00

26 lines
639 B
Makefile

# bsd.local.mk - Sandbox for local modification to ports framework.
#
# Created by: Mark Linimon <linimon@FreeBSD.org>
.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)