-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.options
35 lines (23 loc) · 1.07 KB
/
Makefile.options
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
#----------------------------------------------------------------------
# SETTINGS FOR YOUR PACKAGE
#----------------------------------------------------------------------
# Package name for your
PKG_NAME := ocsature
PKG_VERS := 1.0.0
PKG_DESC := Modules for building your own Eliom application
# Source files
SRC_FILES := $(wildcard src/*.eliom src/*.eliomi)
##----------------------------------------------------------------------
# OCamlfind packages for the server
SERVER_PACKAGES := lwt.ppx safepass pgocaml
# OCamlfind packages for the client
CLIENT_PACKAGES := lwt.ppx safepass pgocaml
# Debug package (yes/no): Debugging info in compilation
DEBUG := yes
# Native mode (yes/no): Compile also with native mode (it will always compile with byte mode)
NATIVE := yes
# Package's library $(PKG_NAME).{client,server}.cma (a,cmxa,cmxs only server side)
LIBDIR := lib/
##----------------------------------------------------------------------
TEST_PROJECT := bmtest
TEMPLATE_NAME := ocsature