diff --git a/build.py b/build.py index 86830ad..baa148e 100755 --- a/build.py +++ b/build.py @@ -9,6 +9,11 @@ INPUT = ["cnam"] OUTPUT = "out" +def others(): + import cnam.travaux.blanc.build as blanc + blanc.main() + + def main(): file = os.path.realpath(__file__) directory = os.path.dirname(file) @@ -28,6 +33,7 @@ def main(): os.path.join(output_directory, doc), ] sphinx.build_main(arguments) + others() if __name__ == "__main__":