diff options
-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 f71a5148acdd..9986d1a9a194 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 c44199bbaabf..000000000000 --- 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: |