FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
mapserver/Makefile at python-mapscript-build2 · geographika/mapserver · GitHub
geographika
/
mapserver
Public
forked from
MapServer/MapServer
Notifications
You must be signed in to change notification settings
Fork
2
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
mapserver
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
62 lines (46 loc) · 2.37 KB
Breadcrumbs
mapserver
/
Makefile
Copy path
File metadata and controls
62 lines (46 loc) · 2.37 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
AUTOTEST_OPTS
=-strict -q
PHP_MAPSCRIPT
=build/mapscript/php/php_mapscript.so
PYTHON_MAPSCRIPT_PATH
=build/mapscript/python
JAVA_MAPSCRIPT_PATH
=build/mapscript/java
BUILDPATH
=../../build
FLEX
=flex
YACC
=yacc
CMAKEFLAGS=-DCMAKE_C_FLAGS
="--coverage" -DCMAKE_CXX_FLAGS="--coverage"
\
-DCMAKE_SHARED_LINKER_FLAGS="-lgcov" -DWITH_CLIENT_WMS=1
\
-DWITH_CLIENT_WFS=1 -DWITH_KML=1 -DWITH_SOS=1 -DWITH_PHP=1
\
-DWITH_PYTHON=1 -DWITH_JAVA=1 -DWITH_THREAD_SAFETY=1 -DWITH_FRIBIDI=1 -DWITH_FCGI=0 -DWITH_EXEMPI=1
\
-DCMAKE_BUILD_TYPE=Release -DWITH_RSVG=1 -DWITH_CURL=1 -DWITH_HARFBUZZ=1 -DWITH_POINT_Z_M=1
all
: cmakebuild
cmakebuild
: lexer parser
if
test
!
-s build/Makefile
;
then
mkdir -p build
;
cd
build
;
cmake ..
$(
CMAKEFLAGS
)
;
fi
cd
build
&&
$(
MAKE
)
$(
MFLAGS
)
warning
:
$(
error
"This Makefile is used to run the \"test\" target")
wxs-testcase
:
cd
msautotest/wxs
&&
chmod 777 tmp
&&
rm -f result/
*
&&
export
PATH=
$(
BUILDPATH
)
:
$(
PATH
)
&&
./run_test.py
$(
AUTOTEST_OPTS
)
renderers-testcase
:
cd
msautotest/renderers
&&
rm -f result/
*
&&
export
PATH=
$(
BUILDPATH
)
:
$(
PATH
)
&&
./run_test.py
$(
AUTOTEST_OPTS
)
misc-testcase
:
cd
msautotest/misc
&&
rm -f result/
*
&&
export
PATH=
$(
BUILDPATH
)
:
$(
PATH
)
&&
./run_test.py
$(
AUTOTEST_OPTS
)
gdal-testcase
:
cd
msautotest/gdal
&&
rm -f result/
*
&&
export
PATH=
$(
BUILDPATH
)
:
$(
PATH
)
&&
./run_test.py
$(
AUTOTEST_OPTS
)
query-testcase
:
cd
msautotest/query
&&
rm -f result/
*
&&
export
PATH=
$(
BUILDPATH
)
:
$(
PATH
)
&&
./run_test.py
$(
AUTOTEST_OPTS
)
mspython-testcase
:
test
-f
"
$(
PYTHON_MAPSCRIPT_PATH
)
/_mapscript.so
"
&&
(export PYTHONPATH=
"
../../
$(
PYTHON_MAPSCRIPT_PATH
)
"
&&
cd
msautotest/mspython
&&
python run_all_tests.py)
mspython-wheel
:
cd
build
&&
cmake --build
.
--target pythonmapscript-wheel
php-testcase
:
test
-f
"
$(
PHP_MAPSCRIPT
)
"
&&
(export PHP_MAPSCRIPT_SO=
"
../../
$(
PHP_MAPSCRIPT
)
"
&&
cd
msautotest/php
&&
./run_test.sh)
java-testcase
:
test
-d
"
$(
JAVA_MAPSCRIPT_PATH
)
"
&&
(export JAVA_MAPSCRIPT_SO=
"
../../
$(
JAVA_MAPSCRIPT_PATH
)
"
&&
cd
mapscript/java
&&
./run_test.sh)
test
: cmakebuild
@
$(
MAKE
)
$(
MFLAGS
)
wxs-testcase renderers-testcase misc-testcase gdal-testcase query-testcase mspython-testcase
@./print-test-results.sh
@
$(
MAKE
)
$(
MFLAGS
)
php-testcase
lexer
: maplexer.c
parser
: mapparser.c
maplexer.c
: maplexer.l
$(
FLEX
)
--nounistd -Pmsyy -i -o
$(
CURDIR
)
/maplexer.c maplexer.l
mapparser.c
: mapparser.y
$(
YACC
)
-d -o
$(
CURDIR
)
/mapparser.c mapparser.y
Back
|
FazBrowse Home
|
New Git URL