source: trunk/Make.inc @ 7

Last change on this file since 7 was 7, checked in by willem, 11 years ago

willem

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1# to be included in the Makefile
2# Version of the software
3STOPOS_VERSION=0.91
4
5# installation directory of the server on local system:
6CGI_INSTALL_DIR=$(HOME)/myroot/usr/local/www/cgi-bin
7
8# installation directory of the server on the remote system
9REMOTE_CGI_INSTALL_DIR=stopos.osd.surfsara.nl:/usr/local/stopos/cgi-bin
10
11# location of the client programs:
12CLIENT_INSTALL_DIR=$(HOME)/myroot/sara/sw/stopos-$(STOPOS_VERSION)
13
14# remote installation directory of the client programs:
15REMOTE_CLIENT_INSTALL_DIR=stopos.osd.surfsara.nl:/usr/local/stopos/bin
16
17# location of the modulefile
18MODULE_INSTALL_DIR=$(HOME)/mymodulefiles/64
19
20# name of the c++ compiler, and it's flags
21CXX=g++
22CXXFLAGS=-Wall -O2
23
24# Choose to generate one ore more of the following:
25#MAKE_FLAT=yes
26MAKE_GDBM=yes
27#MAKE_MYSQL=yes
28#MAKE_FILES=yes
29
30# Choose here the default the client will choose:
31#  this can be overwritten in run time by the environment
32#   variable STOPOS_PROT
33DB_DEFAULT=DEFAULT_GDBM
34#DB_DEFAULT=DEFAULT_FILES
35#DB_DEFAULT=DEFAULT_MYSQL
36#DB_DEFAULT=DEFAULT_FLAT
37
38# Define the default url of the server,
39# can be overwritten in runtime by environment variable
40# STOPOS_SERVER_URL
41#SERVER_URL=http://localhost:5050/cgi-bin/stoposserver/
42SERVER_URL=http://stopos.osd.surfsara.nl/cgi-bin/stoposserver
43
44# Define directory to store the non-mysql databases
45# default is /tmp
46DB_DIR=/data/stopos
47
Note: See TracBrowser for help on using the repository browser.