-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
42 lines (30 loc) · 971 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
### Makefile -- Project Lemonade
# Lemonade (https://github.com/michipili/lemonade)
# This file is part of Lemonade
#
# Copyright © 2013–2015 Michael Grünewald
#
# This file must be used under the terms of the CeCILL-B.
# This source file is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at
# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
PACKAGE= lemonade
VERSION= 0.6.0-current
OFFICER= [email protected]
.sinclude "Makefile.config"
MODULE= ocaml.lib:src
.if!empty(ENABLE_PPX_REWRITER:Myes)
MODULE+= ocaml.prog:ppx
.endif
MODULE+= ocaml.meta:meta
MODULE+= ocaml.manual:manual
SUBDIR= testsuite
EXTERNAL= ocaml.findlib:broken
EXTERNAL+= ocaml.findlib:mixture
.if!empty(ENABLE_PPX_REWRITER:Myes)
EXTERNAL+= ocaml.findlib:ppx_tools.metaquot
.endif
CONFIGURE+= Makefile.config.in
.include "generic.project.mk"
### End of file `Makefile'