Add ./configure and MakeFile, simple wrappers around scons scripts
This commit is contained in:
parent
c5833a6db8
commit
819fa0dac9
2 changed files with 26 additions and 0 deletions
23
Makefile
Executable file
23
Makefile
Executable file
|
@ -0,0 +1,23 @@
|
|||
all: mapnik
|
||||
|
||||
install: all
|
||||
python scons/scons.py install
|
||||
|
||||
mapnik:
|
||||
python scons/scons.py
|
||||
|
||||
clean:
|
||||
python scons/scons.py -c
|
||||
if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
|
||||
if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
|
||||
|
||||
uninstall:
|
||||
python scons/scons.py uninstall
|
||||
|
||||
test:
|
||||
|
||||
echo "...running c++ tests"
|
||||
./tests/cpp_tests/font_registration_test
|
||||
|
||||
echo "...running python tests"
|
||||
python tests/run_tests.py
|
3
configure
vendored
Executable file
3
configure
vendored
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
python scons/scons.py configure $@
|
Loading…
Reference in a new issue