a250e57c96
"${RELEASEDIR}/...". ${RELEASEDIR} is never cleaned , and ${RELEASEDIR}/${MACHINE} is only cleaned if UPDATE is not defined.
27 lines
624 B
Makefile
27 lines
624 B
Makefile
# $NetBSD: Makefile,v 1.3 2003/01/03 15:34:36 lukem Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
|
|
|
|
ARCHIVES= gzip rawrite
|
|
MEMBER_gzip= gz124x5f.lzh gzip.x
|
|
MEMBER_rawrite= rawrite.doc rawrite.lzh rawrite.x
|
|
|
|
.for archive in ${ARCHIVES}
|
|
CLEANFILES+= ${archive}.tar.gz ${MEMBER_${archive}}
|
|
.endfor
|
|
|
|
realall:
|
|
.for archive in ${ARCHIVES}
|
|
${UUDECODE} ${.CURDIR}/${archive}.uue
|
|
${PAX} -O -zrvpp -f ${archive}.tar.gz
|
|
.endfor
|
|
|
|
release:
|
|
.for archive in ${ARCHIVES}
|
|
${RELEASE_INSTALL} -p ${MEMBER_${archive}} \
|
|
${RELEASEDIR}/${MACHINE}/installation/misc
|
|
.endfor
|
|
|
|
.include <bsd.prog.mk>
|