diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-23 05:28:50 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-23 05:28:50 +0000 |
commit | 06acd13c21bb0676c544f32d463c63244fdd0f41 (patch) | |
tree | 087106d0ee3a86a8cdc22147ff10814f7970e4c5 /devel/cc65 | |
parent | d484d409c570a2d5f73fd6ecd49ee5c7f7269edc (diff) | |
download | ports-06acd13c21bb0676c544f32d463c63244fdd0f41.tar.gz ports-06acd13c21bb0676c544f32d463c63244fdd0f41.zip |
Notes
Diffstat (limited to 'devel/cc65')
-rw-r--r-- | devel/cc65/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/cc65/Makefile b/devel/cc65/Makefile index 4ff18e2cd910..0b2209ed9889 100644 --- a/devel/cc65/Makefile +++ b/devel/cc65/Makefile @@ -34,7 +34,7 @@ WRKSRC= ${WRKDIR}/cc65-${PORTVERSION} DEVNULL= ${__empty_string_for_portlint}/dev/null # These doc files can be compiled using the textproc/sgmltools port -DOCFILES!= ls ${WRKSRC}/doc 2> ${DEVNULL} | \ +DOCFILES!= ${LS} ${WRKSRC}/doc 2> ${DEVNULL} | \ ${SED} -E -e 's/^/doc\//' && ${ECHO_CMD} announce.txt BINFILES= \ @@ -43,14 +43,14 @@ BINFILES= \ BINSCRIPTS= src/ca65html/ca65html -ASMINCFILES!= ls ${WRKSRC}/asminc 2> ${DEVNULL} | ${EGREP} '\.inc' || true +ASMINCFILES!= ${LS} ${WRKSRC}/asminc 2> ${DEVNULL} | ${EGREP} '\.inc' || true -CC65LIBFILES!= ls ${WRKSRC}/libsrc/ 2> ${DEVNULL} | ${EGREP} '\.(o|lib)' \ +CC65LIBFILES!= ${LS} ${WRKSRC}/libsrc/ 2> ${DEVNULL} | ${EGREP} '\.(o|lib)' \ || true -CC65EMDFILES!= ls ${WRKSRC}/libsrc/ 2> ${DEVNULL} | ${EGREP} '\.emd' || true +CC65EMDFILES!= ${LS} ${WRKSRC}/libsrc/ 2> ${DEVNULL} | ${EGREP} '\.emd' || true -CC65TGIFILES!= ls ${WRKSRC}/libsrc/ 2> ${DEVNULL} | ${EGREP} '\.tgi' || true +CC65TGIFILES!= ${LS} ${WRKSRC}/libsrc/ 2> ${DEVNULL} | ${EGREP} '\.tgi' || true do-build: cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${GMAKE} -ef make/gcc.mak |