root/trunk/libffado/doc/SConscript

Revision 2764, 430 bytes (checked in by jwoithe, 6 years ago)

Delete trailing whitespaces. Indent with spaces instead tabs.

Patch from Nicolas Boulenguez.

Line 
1 #! /usr/bin/env python
2
3 Import( 'env' )
4
5 env = env.Clone()
6
7 # At this point BUILD_DOC is either 'all' or 'user'
8 doxygen_dir_list = [env["top_srcdir"] + "/libffado"]
9 if env["BUILD_DOC"] == 'all':
10     doxygen_dir_list += [env["top_srcdir"] + "/src",
11                          env["top_srcdir"] + "/doc"]
12 env["DOXYGEN_INPUT"] = " ".join(doxygen_dir_list)
13
14 env.ScanReplace( "reference.doxygen.in" )
15
16 env.Doxygen( "reference.doxygen" )
Note: See TracBrowser for help on using the browser.