diff options
author | jmmv <jmmv@pkgsrc.org> | 2003-06-07 10:34:09 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2003-06-07 10:34:09 +0000 |
commit | 26af44ee64de6720becb0b22df7fb09619a68a9c (patch) | |
tree | b93e77f3796366dde2c4a661afacbf3eb917ed5a /net/ettercap/Makefile | |
parent | a521d4d1a4bf70a7a4fb982d67c6ef5d70e2f9f4 (diff) | |
download | pkgsrc-26af44ee64de6720becb0b22df7fb09619a68a9c.tar.gz |
Use BUILD_DIRS and INSTALL_DIRS, instead of custom post-build and post-install
targets.
Diffstat (limited to 'net/ettercap/Makefile')
-rw-r--r-- | net/ettercap/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/net/ettercap/Makefile b/net/ettercap/Makefile index 582ca49ea73..f0e61055994 100644 --- a/net/ettercap/Makefile +++ b/net/ettercap/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2003/05/05 16:59:02 jmmv Exp $ +# $NetBSD: Makefile,v 1.14 2003/06/07 10:34:09 jmmv Exp $ DISTNAME= ettercap-0.6.9 PKGREVISION= 1 @@ -19,11 +19,8 @@ USE_NCURSES= # newpad(), MAX_FORM_COMMAND PTHREAD_OPTS+= require MAKE_ENV+= MACHINE_ARCH=${MACHINE_ARCH} -post-build: - cd ${WRKSRC}/plugins ; ${MAKE_ENV} ${MAKE} all - -post-install: - cd ${WRKSRC}/plugins ; ${MAKE_ENV} ${MAKE} install +BUILD_DIRS= ${WRKSRC} ${WRKSRC}/plugins +INSTALL_DIRS= ${WRKSRC} ${WRKSRC}/plugins .include "../../devel/ncurses/buildlink2.mk" .include "../../mk/pthread.buildlink2.mk" |