30 lines
570 B
Makefile
30 lines
570 B
Makefile
# $OpenBSD: Makefile,v 1.3 2016/02/27 22:50:39 mmcc Exp $
|
|
|
|
COMMENT = tools for authors of OCaml ppx rewriters
|
|
CATEGORIES = devel
|
|
|
|
V = 0.99.2
|
|
GH_ACCOUNT = alainfrisch
|
|
GH_PROJECT = ppx_tools
|
|
GH_TAGNAME = ppx_tools_${V}
|
|
PKGNAME = ocaml-ppx-tools-${V}
|
|
|
|
ALL_TARGET = byte
|
|
.include <bsd.port.arch.mk>
|
|
.if ${PROPERTIES:Mocaml_native}
|
|
ALL_TARGET += opt
|
|
.if ${PROPERTIES:Mocaml_native_dynlink}
|
|
ALL_TARGET += dyn
|
|
.endif
|
|
.endif
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/ocaml
|
|
BUILD_DEPENDS = sysutils/findlib
|
|
USE_GMAKE = Yes
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|