14 lines
423 B
Python
14 lines
423 B
Python
#! /usr/bin/env python
|
|
# WAF build script for midori
|
|
# This file is licensed under the terms of the expat license, see the file EXPAT.
|
|
|
|
import platform
|
|
|
|
obj = bld.new_task_gen ('cc', 'staticlib')
|
|
obj.name = 'katze'
|
|
obj.target = 'katze'
|
|
obj.includes = '. ../.'
|
|
obj.find_sources_in_dirs ('.')
|
|
obj.add_marshal_file ('marshal.list', 'katze_cclosure_marshal')
|
|
obj.uselib = 'M GMODULE LIBSOUP GTK LIBXML'
|
|
obj.install_path = None
|