import sys import os sys.dont_write_bytecode = True from regfi_version import REGFI_VERSION cflags = '-std=gnu99 -pedantic -Wall -D_FILE_OFFSET_BITS=64 -fvisibility=hidden' cflags += ' -DREGFI_VERSION=\'"%s"\'' % REGFI_VERSION cflags += ' -ggdb' lib_src = ['lib/regfi.c', 'lib/winsec.c', 'lib/range_list.c', 'lib/lru_cache.c', 'lib/void_stack.c'] env = Environment(CFLAGS=cflags, CPPPATH=['include', '/usr/local/include'], LIBPATH=['lib', '/usr/local/lib'], LIBS=['m', 'pthread', 'regfi', 'talloc']) # Libraries libregfi_static = env.Library(lib_src) libregfi = env.SharedLibrary(lib_src, LIBS=['m','pthread', 'talloc']) # Executables reglookup = env.Program(['src/reglookup.c']) reglookup_recover = env.Program(['src/reglookup-recover.c']) # Documentation # This only needs to be run during the release/packaging process man_fixup = "|sed 's/.SH DESCRIPTION/\\n.SH DESCRIPTION/'" man_builder = Builder(action='docbook2x-man --to-stdout $SOURCE' + man_fixup + '| gzip -9 > $TARGET', suffix = '.gz', src_suffix = '.docbook') env['BUILDERS']['ManPage'] = man_builder man_reglookup = env.ManPage('doc/reglookup.1.docbook') man_reglookup_recover = env.ManPage('doc/reglookup-recover.1.docbook') man_reglookup_timeline = env.ManPage('doc/reglookup-timeline.1.docbook') # Installation prefix='/usr/local/' install_items = [prefix+'bin', prefix+'lib', prefix+'include/regfi', prefix+'man'] env.Install(prefix+'bin', [reglookup, reglookup_recover, 'bin/reglookup-timeline']) env.Install(prefix+'lib', [libregfi, libregfi_static]) env.Install(prefix+'include/regfi', Glob('include/*.h')) env.Install(prefix+'man/man1', [man_reglookup, man_reglookup_recover, man_reglookup_timeline]) if sys.version_info[0] == 2: install_items.append('pyregfi2-install.log') env.Command('pyregfi2-install.log', ['python/pyregfi/__init__.py', 'python/pyregfi/structures.py'], "python pyregfi-distutils.py install | tee pyregfi2-install.log") python_path = os.popen('which python3').read() if python_path != '': install_items.append('pyregfi3-install.log') env.Command('pyregfi3-install.log', ['python/pyregfi/__init__.py', 'python/pyregfi/structures.py'], "python3 pyregfi-distutils.py install | tee pyregfi3-install.log") # API documentation regfi_doc = env.Command('doc/devel/regfi/index.html', Glob('lib/*.c')+Glob('include/*.h')+['doc/devel/Doxyfile.regfi'], 'doxygen doc/devel/Doxyfile.regfi') pyregfi_doc = env.Command('doc/devel/pyregfi/index.html', Glob('python/pyregfi/*.py')+['doc/devel/Doxyfile.pyregfi', regfi_doc], 'doxygen doc/devel/Doxyfile.pyregfi') # User Friendly Targets env.Alias('libregfi', libregfi) env.Alias('reglookup', reglookup) env.Alias('reglookup-recover', reglookup_recover) env.Alias('bin', [reglookup_recover, reglookup]) env.Alias('doc', [man_reglookup,man_reglookup_recover,man_reglookup_timeline]) env.Alias('doc-devel', [regfi_doc, pyregfi_doc]) env.Alias('install', install_items) Default('bin', libregfi)