diff options
author | vs <vs@FreeBSD.org> | 2005-10-06 10:55:10 +0000 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2005-10-06 10:55:10 +0000 |
commit | f620dc9a63e7262c456f68ccf8c793941458af06 (patch) | |
tree | 296b276863ee91836799cc59e7f7b2f91eb8e088 | |
parent | 0fc25a2e63454bcd25f568ebf38395db47b9dd3a (diff) | |
download | FreeBSD-ports-f620dc9a63e7262c456f68ccf8c793941458af06.zip FreeBSD-ports-f620dc9a63e7262c456f68ccf8c793941458af06.tar.gz |
Use do-build: instead of separate Makefile
-rw-r--r-- | lang/dice/Makefile | 6 | ||||
-rw-r--r-- | lang/dice/files/Makefile | 12 |
2 files changed, 4 insertions, 14 deletions
diff --git a/lang/dice/Makefile b/lang/dice/Makefile index f71a514..9986d1a 100644 --- a/lang/dice/Makefile +++ b/lang/dice/Makefile @@ -26,11 +26,13 @@ post-patch: ${REINPLACE_CMD} -e 's@/home/dice@${PREFIX}/share/dice@g' $$i; \ done - @${CP} ${FILESDIR}/Makefile ${WRKSRC} - @${FIND} ${WRKSRC} -name '*.[ch]' | ${XARGS} \ ${REINPLACE_CMD} -e 's@__aligned@dice_aligned@g' +do-build: + cd ${WRKSRC}/suplib && ${MAKE} && ${MAKE} install + cd ${WRKSRC}/src && ${MAKE} && ${MAKE} install + do-install: @${RM} ${WRKSRC}/doc/loadabs.c.bak @for i in ${WRKSRC}/ubin/*; \ diff --git a/lang/dice/files/Makefile b/lang/dice/files/Makefile deleted file mode 100644 index c44199b..0000000 --- a/lang/dice/files/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# Makefile for dice -# Created by Miguel Mendez <flynn@energyhq.homeip.net> -# $FreeBSD$ - -DCCOPTS= -3.0 -// -DINCLUDE= `pwd`/include/ - -all: - cd suplib && ${MAKE} && ${MAKE} install - cd src && ${MAKE} && ${MAKE} install - -install: |