blob: 8df0783de12000d8912bf5ed4ed86b04d4b4456b (
plain) (
blame)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#########################################################################
# #
# GALAX #
# XML Query Engine #
# #
# Copyright 2000, Lucent Technologies. #
# Distributed only by permission. #
# #
#########################################################################
# $Id: Makefile.unix,v 1.8 2002/10/12 00:33:30 simeon Exp $ #
# $FreeBSD$ #
# This config should work under Unix
########################################################################
# Location of O'Caml compilers and libraries
OCAMLHOME=$(PREFIX)/lib/ocaml
OCAMLBIN=$(PREFIX)/bin
########################################################################
# Where do you want to install Galax after it has been compiled?
GALAXHOME=$(PREFIX)/Galax-0.2.0
BINDIR=$(GALAXHOME)/bin
LIBDIR=$(GALAXHOME)/lib
MANDIR=$(GALAXHOME)
###########################################################################
# Character encoding configuration
ENCODINGS=utf8 #iso88591 utf8
# The list of currently available encodings is: iso88591 and utf8
# Note that support for each encoding does add to the size of the
# resulting Galax executables.
###########################################################################
# APIs configuration
#
# Notes:
# - the Java API is not available in native mode
# - the Java API requires the C API
#
APIS=c #java
OPTAPIS=c
# C & C++ compilers (only required if you want to use the C and C++ APIs)
CC?=gcc
CPP?=g++
LD=ld
# Compiling the C & C++ APIs often requires additional libaries,
# depending on your compiler.
#
# A good hint is to look for the BYTECCLIBS variable inside
# ./config/Makefile in the Objective Caml source after it has been
# configured.
# Works with Linux i386 + gcc
WITH_CLIBS=-lm -lcurses
# Works with Solaris 2.6 + cc
#WITH_CLIBS=-lcurses -lnsl -lsocket -lm -ldl -lunix -lstr
# Which parameters to ld to create a shared library?
SHARED=-shared --whole-archive
#SHARED=-G -z allextract
# Java compilers (only required if you want to use the Java API)
JAVAC=javac
#JAVAH=javah
# For the Java library, the Java home directory and include directory
# where jni.h is located
JAVAHOME=$(JAVA_HOME)
# Works for IBM jdk
JAVAINCLUDE=$(JAVAHOME)/include
# Reported to work for SUN jdk
#JAVAINCLUDE=$(JAVAHOME)/include/linux
##########################################################################
# The following is only needed if you are running the regression tests
#
# Location of Perl
PERL=perl
###########################################################################
# YOU SHOULD NOT NEED TO MODIFY BELOW THIS LINE
###########################################################################
# Architecture
ARCH=FreeBSD
###########################################################################
# Executable extension's configuration
EXE= # Extension for executables
OPT=.opt # Extension for native code executables
BYTE=.byte # Extension for bytecode code executables
CGI=.cgi # Extension for byte code CGI scripts
OPTCGI=opt.cgi # Extension for native code CGI scripts
ZIPEXT=.tar.gz # Extension for packages
###########################################################################
# Command-line tools
CP=cp
MKDIR=mkdir -p
RANLIB=ranlib
AR=ar
LN=ln -s -f
RM=rm -f
TOUCH=touch
ZIP=tar cvf
ZIPOPT=--gzip
|