freebsd-dev/share/mk/bsd.pkg.mk
Paul Richards 57e3ff643a If PORTNAME is set in a system Makefile then hook into the ports
mechanisms to allow a package to be created. This paves the way
for packaging the main tree.
2004-12-20 15:46:56 +00:00

49 lines
1.0 KiB
Makefile

# $FreeBSD$
WRKDIR=${.OBJDIR}
.if ${.OBJDIR} == ${.CURDIR}
WRKDIR=${.CURDIR}/work
.endif
NO_WRKSUBDIR=YES
NO_CHECKSUM=YES
NO_BUILD=YES
fetch:
extract:
patch:
configure:
build:
.if target(__<bsd.obj.mk>__)
clean: do-clean
.if ${CANONICALOBJDIR} != ${.CURDIR} && exists(${CANONICALOBJDIR}/)
@rm -rf ${CANONICALOBJDIR}
.else
@if [ -L ${.CURDIR}/obj ]; then rm -f ${.CURDIR}/obj; fi
.if defined(CLEANFILES) && !empty(CLEANFILES)
rm -f ${CLEANFILES}
.endif
.if defined(CLEANDIRS) && !empty(CLEANDIRS)
rm -rf ${CLEANDIRS}
.endif
.endif
.endif
.if !target(beforeinstall)
beforeinstall:
.endif
.if !target(afterinstall)
afterinstall:
.endif
install: install-message check-categories check-conflicts \
run-depends lib-depends pre-install pre-install-script \
generate-plist check-already-installed \
check-umask install-mtree pre-su-install \
pre-su-install-script \
beforeinstall realinstall afterinstall \
add-plist-info post-install post-install-script \
compress-man run-ldconfig fake-pkg
.include <bsd.port.mk>