3b13291fad
Submitted by Brian J. Kifiak <bk@rt.fm>. ccache is a compiler cache. It acts as a caching pre-processor to C/C++ compilers, utilizing compiler output and a hash to detect when a compilation can be satisfied from cache. This often results in a 5 to 10 times speedup in common compilations.
22 lines
418 B
Makefile
22 lines
418 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/07/21 18:52:54 naddy Exp $
|
|
|
|
COMMENT= "compiler cache"
|
|
|
|
DISTNAME= ccache-1.9
|
|
CATEGORIES= devel
|
|
HOMEPAGE= http://ccache.samba.org/
|
|
|
|
MAINTAINER= Brian J. Kifiak <bk@rt.fm>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://ccache.samba.org/ftp/ccache/
|
|
|
|
CONFIGURE_STYLE= gnu dest
|
|
|
|
.include <bsd.port.mk>
|