]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/pkg_install/Makefile
This commit was generated by cvs2svn to compensate for changes in r178382,
[FreeBSD/FreeBSD.git] / usr.sbin / pkg_install / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 SUBDIR= lib add create delete info updating version
6
7 .include <bsd.subdir.mk>
8
9 CP=     /bin/cp
10 RM=     /bin/rm
11 TAR=    /usr/bin/tar
12
13 DATE!=  date +%Y%m%d
14
15 distfile: clean
16         @(cd ${.CURDIR}/..; \
17                 ${CP} -r pkg_install pkg_install-${DATE}; \
18                 ${TAR} -czf pkg_install/pkg_install-${DATE}.tar.gz \
19                         --exclude .#* --exclude *~ --exclude CVS \
20                         --exclude pkg_install-*.tar.gz pkg_install-${DATE}; \
21                 ${RM} -rf pkg_install-${DATE})
22                 
23