Move headers to include/ dir

This commit is contained in:
Nils O. Selåsdal
2012-11-14 23:49:28 +01:00
parent 0afea336ef
commit 1d47f9d078
25 changed files with 3 additions and 2335 deletions
-8
View File
@@ -3,12 +3,7 @@ Import('env', 'build_type', 'prefix', 'version_info')
ucore_env = env.Clone()
#substitute @version_xx@ strings
subst_version_info = dict(('@' + key + '@', version_info[key]) for key in version_info)
ucore_env.Substfile('ucore_version.c.in', SUBST_DICT = subst_version_info)
sources = ucore_env.Glob('*.c')
headers = ucore_env.Glob('*.h')
#print 'ucore_env', dir(ucore_env)
#print ucore_env.Dump()
@@ -21,6 +16,3 @@ ucore_lib = ucore_env.StaticLibrary(target='ucore_' + build_type , source=source
ucore_env.Alias('install',
ucore_env.Install(os.path.join(prefix, 'lib'), ucore_lib))
ucore_env.Alias('install',
ucore_env.InstallPerm(os.path.join(prefix, 'include', 'ucore'), headers, 0644))