mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-23 02:17:22 +00:00
Our whole system of Makefiles are integrated from top to bottom, meaning: 1. The paths in sub-makefiles are relative to the top source dir. 2. Sub-makefiles are executed via make $(build)=<SUBDIR> <TARGET> For some reason, makefiles under lib/ are the exclusion. Let's fix it. Side effect: you can now build any individual target under lib/, for example, "make lib/c/libcriu.so" works. [v2: use the .FORCE, thanks to dsafonov@] Signed-off-by: Kir Kolyshkin <kir@openvz.org> Reviewed-by: Dmitry Safonov <dsafonov@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
13 lines
358 B
Python
13 lines
358 B
Python
from distutils.core import setup
|
|
|
|
setup(name = "crit",
|
|
version = "0.0.1",
|
|
description = "CRiu Image Tool",
|
|
author = "CRIU team",
|
|
author_email = "criu@openvz.org",
|
|
url = "https://github.com/xemul/criu",
|
|
package_dir = {'pycriu': 'lib/py'},
|
|
packages = ["pycriu", "pycriu.images"],
|
|
scripts = ["crit/crit"]
|
|
)
|